From 32c1a67229a846ca33e92f972c0f3722edb1abae Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Jul 2026 00:07:01 +0000 Subject: [PATCH] chore(deps): bump the actions group across 1 directory with 5 updates Bumps the actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `6` | `7` | | [actions/setup-node](https://github.com/actions/setup-node) | `6` | `7` | | [expo/expo-github-action](https://github.com/expo/expo-github-action) | `8.2.1` | `9.0.0` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `3.0.1` | `3.0.2` | | [dependabot/fetch-metadata](https://github.com/dependabot/fetch-metadata) | `2.3.0` | `3.1.0` | Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) Updates `actions/setup-node` from 6 to 7 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v6...v7) Updates `expo/expo-github-action` from 8.2.1 to 9.0.0 - [Release notes](https://github.com/expo/expo-github-action/releases) - [Changelog](https://github.com/expo/expo-github-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/expo/expo-github-action/compare/c7b66a9c327a43a8fa7c0158e7f30d6040d2481e...eab7a230208c952974db8c3245cfd78402c7b385) Updates `softprops/action-gh-release` from 3.0.1 to 3.0.2 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/718ea10b132b3b2eba29c1007bb80653f286566b...3d0d9888cb7fd7b750713d6e236d1fcb99157228) Updates `dependabot/fetch-metadata` from 2.3.0 to 3.1.0 - [Release notes](https://github.com/dependabot/fetch-metadata/releases) - [Commits](https://github.com/dependabot/fetch-metadata/compare/d7267f607e9d3fb96fc2fbe83e0af444713e90b7...25dd0e34f4fe68f24cc83900b1fe3fe149efef98) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-node dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: expo/expo-github-action dependency-version: 9.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: softprops/action-gh-release dependency-version: 3.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: dependabot/fetch-metadata dependency-version: 3.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/cd-android.yml | 8 ++++---- .github/workflows/cd-ios.yml | 8 ++++---- .github/workflows/ci.yml | 4 ++-- .github/workflows/codeql.yml | 2 +- .github/workflows/dependabot-auto-merge.yml | 2 +- .github/workflows/setup.yml | 2 +- .github/workflows/update-changelog.yml | 2 +- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/cd-android.yml b/.github/workflows/cd-android.yml index 0e8a12d..c563958 100644 --- a/.github/workflows/cd-android.yml +++ b/.github/workflows/cd-android.yml @@ -19,11 +19,11 @@ jobs: environment: production runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-tags: true - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: node-version: 22 cache: 'npm' @@ -58,7 +58,7 @@ jobs: fi - name: Setup Expo CLI - uses: expo/expo-github-action@c7b66a9c327a43a8fa7c0158e7f30d6040d2481e # v8 + uses: expo/expo-github-action@eab7a230208c952974db8c3245cfd78402c7b385 # v9 with: eas-version: latest token: ${{ secrets.EXPO_TOKEN }} @@ -70,7 +70,7 @@ jobs: run: eas submit --platform android --profile production --non-interactive - name: Create GitHub Release - uses: softprops/action-gh-release@718ea10b132b3b2eba29c1007bb80653f286566b # v3 + uses: softprops/action-gh-release@3d0d9888cb7fd7b750713d6e236d1fcb99157228 # v3 with: tag_name: v${{ steps.version.outputs.version }}-android name: v${{ steps.version.outputs.version }} (Android) diff --git a/.github/workflows/cd-ios.yml b/.github/workflows/cd-ios.yml index 21cc65f..ea5579d 100644 --- a/.github/workflows/cd-ios.yml +++ b/.github/workflows/cd-ios.yml @@ -19,11 +19,11 @@ jobs: environment: production runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-tags: true - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: node-version: 22 cache: 'npm' @@ -58,7 +58,7 @@ jobs: fi - name: Setup Expo CLI - uses: expo/expo-github-action@c7b66a9c327a43a8fa7c0158e7f30d6040d2481e # v8 + uses: expo/expo-github-action@eab7a230208c952974db8c3245cfd78402c7b385 # v9 with: eas-version: latest token: ${{ secrets.EXPO_TOKEN }} @@ -70,7 +70,7 @@ jobs: run: eas submit --platform ios --profile production --non-interactive - name: Create GitHub Release - uses: softprops/action-gh-release@718ea10b132b3b2eba29c1007bb80653f286566b # v3 + uses: softprops/action-gh-release@3d0d9888cb7fd7b750713d6e236d1fcb99157228 # v3 with: tag_name: v${{ steps.version.outputs.version }}-ios name: v${{ steps.version.outputs.version }} (iOS) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 152e2bb..d8f667c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: ci: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 @@ -31,7 +31,7 @@ jobs: tar xz -C /tmp -f /tmp/gitleaks.tgz /tmp/gitleaks detect --source . --verbose --redact - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: node-version: 22 cache: 'npm' diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 9f77bb2..7b7407c 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -16,7 +16,7 @@ jobs: analyze: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Initialize CodeQL uses: github/codeql-action/init@v4 diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml index fbf7f86..2c0327b 100644 --- a/.github/workflows/dependabot-auto-merge.yml +++ b/.github/workflows/dependabot-auto-merge.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Fetch Dependabot metadata id: meta - uses: dependabot/fetch-metadata@d7267f607e9d3fb96fc2fbe83e0af444713e90b7 # v2.3.0 + uses: dependabot/fetch-metadata@25dd0e34f4fe68f24cc83900b1fe3fe149efef98 # v3.1.0 with: github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/setup.yml b/.github/workflows/setup.yml index 72a5ef6..4217d62 100644 --- a/.github/workflows/setup.yml +++ b/.github/workflows/setup.yml @@ -11,7 +11,7 @@ jobs: permissions: issues: write steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Check if template id: check diff --git a/.github/workflows/update-changelog.yml b/.github/workflows/update-changelog.yml index 94c98a7..91c3259 100644 --- a/.github/workflows/update-changelog.yml +++ b/.github/workflows/update-changelog.yml @@ -19,7 +19,7 @@ jobs: update: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: ref: main token: ${{ secrets.GITHUB_TOKEN }}