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 }}