From 7c323c03988b5e4b0a90b25d4191c78bc55d41dc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 27 Jun 2026 09:19:30 +0000 Subject: [PATCH] Bump the github-actions group with 5 updates Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `7` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | | [actions/setup-java](https://github.com/actions/setup-java) | `4` | `5` | | [actions/cache](https://github.com/actions/cache) | `4` | `6` | Updates `actions/checkout` from 4 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/v4...v7) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v6) Updates `actions/setup-java` from 4 to 5 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v4...v5) Updates `actions/cache` from 4 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-java dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/firebase-emulators-exec.yml | 2 +- .github/workflows/npm-test-coverage.yml | 2 +- .github/workflows/xcodebuild-or-fastlane.yml | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/firebase-emulators-exec.yml b/.github/workflows/firebase-emulators-exec.yml index 2d24149..446bebd 100644 --- a/.github/workflows/firebase-emulators-exec.yml +++ b/.github/workflows/firebase-emulators-exec.yml @@ -103,7 +103,7 @@ jobs: echo "github-hosted: ${{ runner.environment == 'github-hosted' }}" - name: Cache Firebase emulators if: ${{ runner.environment == 'github-hosted' }} - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/firebase/emulators key: ${{ runner.os }}-${{ runner.arch }}-firebase-emulators-${{ hashFiles('~/.cache/firebase/emulators/**') }} diff --git a/.github/workflows/npm-test-coverage.yml b/.github/workflows/npm-test-coverage.yml index 30b5888..49bf24c 100644 --- a/.github/workflows/npm-test-coverage.yml +++ b/.github/workflows/npm-test-coverage.yml @@ -63,7 +63,7 @@ jobs: cache-dependency-path: '${{ inputs.working-directory }}/package-lock.json' - name: Cache Firebase emulators if: ${{ runner.environment == 'github-hosted' && inputs.setup-firebase-emulator }} - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/firebase/emulators key: ${{ runner.os }}-${{ runner.arch }}-firebase-emulators-${{ hashFiles('~/.cache/firebase/emulators/**') }} diff --git a/.github/workflows/xcodebuild-or-fastlane.yml b/.github/workflows/xcodebuild-or-fastlane.yml index 9a834df..33f4b51 100644 --- a/.github/workflows/xcodebuild-or-fastlane.yml +++ b/.github/workflows/xcodebuild-or-fastlane.yml @@ -239,7 +239,7 @@ jobs: working-directory: ${{ inputs.path }} environment: ${{ inputs.environment }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: # This is GitHubs way of implementing ternary expressions (see https://docs.github.com/en/actions/learn-github-actions/expressions) token: ${{ secrets.CHECKOUT_TOKEN != '' && secrets.CHECKOUT_TOKEN || github.token }} @@ -264,16 +264,16 @@ jobs: echo "::warning::Caching of the .derivedData folder was removed and is deprecated. Please stop using this option." - name: Cache Firebase Emulators if: ${{ runner.environment == 'github-hosted' && inputs.setupfirebaseemulator }} - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.cache/firebase/emulators key: ${{ runner.os }}-${{ runner.arch }}-firebase-emulators-${{ hashFiles('~/.cache/firebase/emulators/**') }} - name: Setup NodeJS if: ${{ runner.environment == 'github-hosted' && inputs.setupfirebaseemulator }} - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 - name: Setup Java if: ${{ runner.environment == 'github-hosted' && inputs.setupfirebaseemulator }} - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: distribution: 'microsoft' java-version: '17' @@ -445,7 +445,7 @@ jobs: uses: github/codeql-action/analyze@v4 - name: Upload artifact if: ${{ (success() || failure()) && inputs.artifactname != '' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ inputs.artifactname }} path: ${{ inputs.path }}/${{ inputs.artifactname }}