File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 31
31
32
32
# Use cache to share the output across different jobs
33
33
# No need to cache node_modules because they are all bundled
34
- - uses : actions/cache/save@v3
34
+ - uses : actions/cache/save@v4
35
35
id : cache
36
36
with :
37
37
path : outfile.cjs
@@ -110,7 +110,7 @@ jobs:
110
110
with :
111
111
node-version : ${{ matrix.node-version }}
112
112
cache : ' pnpm'
113
- - uses : actions/cache/restore@v3
113
+ - uses : actions/cache/restore@v4
114
114
id : cache-restore
115
115
with :
116
116
path : outfile.cjs
@@ -135,15 +135,15 @@ jobs:
135
135
- if : ${{ contains(matrix.flag-for-e2e, '--cypress') }}
136
136
name : Cache Cypress binaries
137
137
id : cache-cypress
138
- uses : actions/cache@v3
138
+ uses : actions/cache@v4
139
139
with :
140
140
# TODO: avoid snowballing by adding version
141
141
key : ${{ runner.os }}-cypress-bin
142
142
path : ${{ env.CYPRESS_CACHE_FOLDER }}
143
143
144
144
- if : ${{ contains(matrix.flag-for-e2e, '--playwright') }}
145
145
name : Cache Playwright's binary
146
- uses : actions/cache@v3
146
+ uses : actions/cache@v4
147
147
with :
148
148
# Playwright removes unused browsers automatically
149
149
# So does not need to add playwright version to key
You can’t perform that action at this time.
0 commit comments