Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/firebase-emulators-exec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/**') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-test-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/**') }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/xcodebuild-or-fastlane.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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'
Expand Down Expand Up @@ -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 }}
Expand Down
Loading