Skip to content

Commit 1310c6f

Browse files
chore(deps): update actions/cache action to v4 (#426)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 7135317 commit 1310c6f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
# Use cache to share the output across different jobs
3333
# No need to cache node_modules because they are all bundled
34-
- uses: actions/cache/save@v3
34+
- uses: actions/cache/save@v4
3535
id: cache
3636
with:
3737
path: outfile.cjs
@@ -110,7 +110,7 @@ jobs:
110110
with:
111111
node-version: ${{ matrix.node-version }}
112112
cache: 'pnpm'
113-
- uses: actions/cache/restore@v3
113+
- uses: actions/cache/restore@v4
114114
id: cache-restore
115115
with:
116116
path: outfile.cjs
@@ -135,15 +135,15 @@ jobs:
135135
- if: ${{ contains(matrix.flag-for-e2e, '--cypress') }}
136136
name: Cache Cypress binaries
137137
id: cache-cypress
138-
uses: actions/cache@v3
138+
uses: actions/cache@v4
139139
with:
140140
# TODO: avoid snowballing by adding version
141141
key: ${{ runner.os }}-cypress-bin
142142
path: ${{ env.CYPRESS_CACHE_FOLDER }}
143143

144144
- if: ${{ contains(matrix.flag-for-e2e, '--playwright') }}
145145
name: Cache Playwright's binary
146-
uses: actions/cache@v3
146+
uses: actions/cache@v4
147147
with:
148148
# Playwright removes unused browsers automatically
149149
# So does not need to add playwright version to key

0 commit comments

Comments
 (0)