@@ -183,7 +183,7 @@ jobs:
183183 run : echo "hash=${{ hashFiles('yarn.lock', '**/package.json') }}" >> "$GITHUB_OUTPUT"
184184
185185 - name : Check dependency cache
186- uses : actions/cache@v3
186+ uses : actions/cache@v4
187187 id : cache_dependencies
188188 with :
189189 path : ${{ env.CACHED_DEPENDENCY_PATHS }}
@@ -227,21 +227,21 @@ jobs:
227227 with :
228228 node-version-file : ' package.json'
229229 - name : Check dependency cache
230- uses : actions/cache/restore@v3
230+ uses : actions/cache/restore@v4
231231 with :
232232 path : ${{ env.CACHED_DEPENDENCY_PATHS }}
233233 key : ${{ needs.job_install_deps.outputs.dependency_cache_key }}
234234 fail-on-cache-miss : true
235235
236236 - name : Check build cache
237- uses : actions/cache@v3
237+ uses : actions/cache@v4
238238 id : cache_built_packages
239239 with :
240240 path : ${{ env.CACHED_BUILD_PATHS }}
241241 key : ${{ env.BUILD_CACHE_KEY }}
242242
243243 - name : NX cache
244- uses : actions/cache@v3
244+ uses : actions/cache@v4
245245 # Disable cache when:
246246 # - on release branches
247247 # - when PR has `ci-skip-cache` label or on nightly builds
@@ -340,7 +340,7 @@ jobs:
340340 with :
341341 node-version-file : ' package.json'
342342 - name : Check dependency cache
343- uses : actions/cache/restore@v3
343+ uses : actions/cache/restore@v4
344344 with :
345345 path : ${{ env.CACHED_DEPENDENCY_PATHS }}
346346 key : ${{ needs.job_install_deps.outputs.dependency_cache_key }}
@@ -548,7 +548,7 @@ jobs:
548548 - name : Get Playwright version
549549 id : playwright-version
550550 run : echo "version=$(node -p "require('@playwright/test/package.json').version")" >> $GITHUB_OUTPUT
551- - uses : actions/cache@v3
551+ - uses : actions/cache@v4
552552 name : Check if Playwright browser is cached
553553 id : playwright-cache
554554 with :
@@ -642,7 +642,7 @@ jobs:
642642 - name : Get Playwright version
643643 id : playwright-version
644644 run : echo "version=$(node -p "require('@playwright/test/package.json').version")" >> $GITHUB_OUTPUT
645- - uses : actions/cache@v3
645+ - uses : actions/cache@v4
646646 name : Check if Playwright browser is cached
647647 id : playwright-cache
648648 with :
@@ -698,7 +698,7 @@ jobs:
698698 - name : Get Playwright version
699699 id : playwright-version
700700 run : echo "version=$(node -p "require('@playwright/test/package.json').version")" >> $GITHUB_OUTPUT
701- - uses : actions/cache@v3
701+ - uses : actions/cache@v4
702702 name : Check if Playwright browser is cached
703703 id : playwright-cache
704704 with :
@@ -909,7 +909,7 @@ jobs:
909909 env :
910910 DEPENDENCY_CACHE_KEY : ${{ needs.job_build.outputs.dependency_cache_key }}
911911 - name : NX cache
912- uses : actions/cache/restore@v3
912+ uses : actions/cache/restore@v4
913913 with :
914914 path : .nxcache
915915 key : nx-Linux-${{ github.ref }}-${{ env.HEAD_COMMIT }}
@@ -918,7 +918,7 @@ jobs:
918918 - name : Build tarballs
919919 run : yarn build:tarball
920920 - name : Stores tarballs in cache
921- uses : actions/cache/save@v3
921+ uses : actions/cache/save@v4
922922 with :
923923 path : ${{ github.workspace }}/packages/*/*.tgz
924924 key : ${{ env.BUILD_CACHE_TARBALL_KEY }}
@@ -1010,7 +1010,7 @@ jobs:
10101010 DEPENDENCY_CACHE_KEY : ${{ needs.job_build.outputs.dependency_cache_key }}
10111011
10121012 - name : Restore tarball cache
1013- uses : actions/cache/restore@v3
1013+ uses : actions/cache/restore@v4
10141014 with :
10151015 path : ${{ github.workspace }}/packages/*/*.tgz
10161016 key : ${{ env.BUILD_CACHE_TARBALL_KEY }}
0 commit comments