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
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ jobs:
head: ${{ env.HEAD_COMMIT }}

- name: NX cache
uses: actions/cache@v4
uses: actions/cache@v5
# Disable cache when:
# - on release branches
# - when PR has `ci-skip-cache` label or on nightly builds
Expand Down Expand Up @@ -881,7 +881,7 @@ jobs:
with:
dependency_cache_key: ${{ needs.job_build.outputs.dependency_cache_key }}
- name: NX cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: .nxcache
key: nx-Linux-${{ github.ref }}-${{ env.HEAD_COMMIT }}
Expand All @@ -892,7 +892,7 @@ jobs:
run: yarn build:tarball

- name: Stores tarballs in cache
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: ${{ github.workspace }}/packages/*/*.tgz
key: ${{ env.BUILD_CACHE_TARBALL_KEY }}
Expand Down Expand Up @@ -959,7 +959,7 @@ jobs:
dependency_cache_key: ${{ needs.job_build.outputs.dependency_cache_key }}

- name: Restore tarball cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
id: restore-tarball-cache
with:
path: ${{ github.workspace }}/packages/*/*.tgz
Expand Down Expand Up @@ -1084,7 +1084,7 @@ jobs:
dependency_cache_key: ${{ needs.job_build.outputs.dependency_cache_key }}

- name: Restore tarball cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
id: restore-tarball-cache
with:
path: ${{ github.workspace }}/packages/*/*.tgz
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
with:
node-version-file: 'package.json'
- name: Check canary cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ env.CACHED_BUILD_PATHS }}
key: canary-${{ env.HEAD_COMMIT }}
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
node-version-file: 'dev-packages/e2e-tests/test-applications/${{ matrix.test-application }}/package.json'

- name: Restore canary cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: ${{ env.CACHED_BUILD_PATHS }}
key: canary-${{ env.HEAD_COMMIT }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flaky-test-detector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: yarn install --ignore-engines --frozen-lockfile

- name: NX cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: .nxcache
key: nx-Linux-${{ github.ref }}-${{ env.HEAD_COMMIT }}
Expand Down
Loading