Skip to content

Commit eb21d81

Browse files
dependabot[bot]mydea
authored andcommitted
ci(deps): Bump actions/cache from 3 to 4
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 00e7a2e commit eb21d81

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

.github/actions/restore-cache/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ runs:
66
steps:
77
- name: Check dependency cache
88
id: dep-cache
9-
uses: actions/cache/restore@v3
9+
uses: actions/cache/restore@v4
1010
with:
1111
path: ${{ env.CACHED_DEPENDENCY_PATHS }}
1212
key: ${{ env.DEPENDENCY_CACHE_KEY }}
1313

1414
- name: Check build cache
15-
uses: actions/cache/restore@v3
15+
uses: actions/cache/restore@v4
1616
id: build-cache
1717
with:
1818
path: ${{ env.CACHED_BUILD_PATHS }}

.github/workflows/build.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -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 }}

.github/workflows/canary.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
with:
3232
node-version-file: 'package.json'
3333
- name: Check canary cache
34-
uses: actions/cache@v3
34+
uses: actions/cache@v4
3535
with:
3636
path: |
3737
${{ github.workspace }}/packages/*/*.tgz
@@ -100,7 +100,7 @@ jobs:
100100
node-version-file: 'package.json'
101101

102102
- name: Restore canary cache
103-
uses: actions/cache/restore@v3
103+
uses: actions/cache/restore@v4
104104
with:
105105
path: |
106106
${{ github.workspace }}/packages/*/*.tgz

.github/workflows/flaky-test-detector.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: yarn install --ignore-engines --frozen-lockfile
4141

4242
- name: NX cache
43-
uses: actions/cache/restore@v3
43+
uses: actions/cache/restore@v4
4444
with:
4545
path: .nxcache
4646
key: nx-Linux-${{ github.ref }}-${{ env.HEAD_COMMIT }}
@@ -55,7 +55,7 @@ jobs:
5555
- name: Get Playwright version
5656
id: playwright-version
5757
run: echo "version=$(node -p "require('@playwright/test/package.json').version")" >> $GITHUB_OUTPUT
58-
- uses: actions/cache@v3
58+
- uses: actions/cache@v4
5959
name: Check if Playwright browser is cached
6060
id: playwright-cache
6161
with:

0 commit comments

Comments
 (0)