@@ -183,7 +183,7 @@ jobs:
183
183
run : echo "hash=${{ hashFiles('yarn.lock', '**/package.json') }}" >> "$GITHUB_OUTPUT"
184
184
185
185
- name : Check dependency cache
186
- uses : actions/cache@v3
186
+ uses : actions/cache@v4
187
187
id : cache_dependencies
188
188
with :
189
189
path : ${{ env.CACHED_DEPENDENCY_PATHS }}
@@ -227,21 +227,21 @@ jobs:
227
227
with :
228
228
node-version-file : ' package.json'
229
229
- name : Check dependency cache
230
- uses : actions/cache/restore@v3
230
+ uses : actions/cache/restore@v4
231
231
with :
232
232
path : ${{ env.CACHED_DEPENDENCY_PATHS }}
233
233
key : ${{ needs.job_install_deps.outputs.dependency_cache_key }}
234
234
fail-on-cache-miss : true
235
235
236
236
- name : Check build cache
237
- uses : actions/cache@v3
237
+ uses : actions/cache@v4
238
238
id : cache_built_packages
239
239
with :
240
240
path : ${{ env.CACHED_BUILD_PATHS }}
241
241
key : ${{ env.BUILD_CACHE_KEY }}
242
242
243
243
- name : NX cache
244
- uses : actions/cache@v3
244
+ uses : actions/cache@v4
245
245
# Disable cache when:
246
246
# - on release branches
247
247
# - when PR has `ci-skip-cache` label or on nightly builds
@@ -340,7 +340,7 @@ jobs:
340
340
with :
341
341
node-version-file : ' package.json'
342
342
- name : Check dependency cache
343
- uses : actions/cache/restore@v3
343
+ uses : actions/cache/restore@v4
344
344
with :
345
345
path : ${{ env.CACHED_DEPENDENCY_PATHS }}
346
346
key : ${{ needs.job_install_deps.outputs.dependency_cache_key }}
@@ -548,7 +548,7 @@ jobs:
548
548
- name : Get Playwright version
549
549
id : playwright-version
550
550
run : echo "version=$(node -p "require('@playwright/test/package.json').version")" >> $GITHUB_OUTPUT
551
- - uses : actions/cache@v3
551
+ - uses : actions/cache@v4
552
552
name : Check if Playwright browser is cached
553
553
id : playwright-cache
554
554
with :
@@ -642,7 +642,7 @@ jobs:
642
642
- name : Get Playwright version
643
643
id : playwright-version
644
644
run : echo "version=$(node -p "require('@playwright/test/package.json').version")" >> $GITHUB_OUTPUT
645
- - uses : actions/cache@v3
645
+ - uses : actions/cache@v4
646
646
name : Check if Playwright browser is cached
647
647
id : playwright-cache
648
648
with :
@@ -698,7 +698,7 @@ jobs:
698
698
- name : Get Playwright version
699
699
id : playwright-version
700
700
run : echo "version=$(node -p "require('@playwright/test/package.json').version")" >> $GITHUB_OUTPUT
701
- - uses : actions/cache@v3
701
+ - uses : actions/cache@v4
702
702
name : Check if Playwright browser is cached
703
703
id : playwright-cache
704
704
with :
@@ -909,7 +909,7 @@ jobs:
909
909
env :
910
910
DEPENDENCY_CACHE_KEY : ${{ needs.job_build.outputs.dependency_cache_key }}
911
911
- name : NX cache
912
- uses : actions/cache/restore@v3
912
+ uses : actions/cache/restore@v4
913
913
with :
914
914
path : .nxcache
915
915
key : nx-Linux-${{ github.ref }}-${{ env.HEAD_COMMIT }}
@@ -918,7 +918,7 @@ jobs:
918
918
- name : Build tarballs
919
919
run : yarn build:tarball
920
920
- name : Stores tarballs in cache
921
- uses : actions/cache/save@v3
921
+ uses : actions/cache/save@v4
922
922
with :
923
923
path : ${{ github.workspace }}/packages/*/*.tgz
924
924
key : ${{ env.BUILD_CACHE_TARBALL_KEY }}
@@ -1010,7 +1010,7 @@ jobs:
1010
1010
DEPENDENCY_CACHE_KEY : ${{ needs.job_build.outputs.dependency_cache_key }}
1011
1011
1012
1012
- name : Restore tarball cache
1013
- uses : actions/cache/restore@v3
1013
+ uses : actions/cache/restore@v4
1014
1014
with :
1015
1015
path : ${{ github.workspace }}/packages/*/*.tgz
1016
1016
key : ${{ env.BUILD_CACHE_TARBALL_KEY }}
0 commit comments