File tree 2 files changed +9
-9
lines changed
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 56
56
run : |
57
57
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
58
58
59
- - uses : actions/cache@v3
59
+ - uses : actions/cache@v4
60
60
with :
61
61
path : ${{ steps.pnpm-paths.outputs.STORE_PATH }}
62
62
key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
66
66
- shell : bash
67
67
run : bash scripts/pre-install.sh && pnpm install --no-frozen-lockfile
68
68
69
- - uses : actions/cache@v3
69
+ - uses : actions/cache@v4
70
70
with :
71
71
path : |
72
72
**/.turbo
97
97
echo "LIB_PATH=$lib_path" >> $GITHUB_OUTPUT
98
98
echo "BIN_PATH=${lib_path/\/lib//bin}" >> $GITHUB_OUTPUT
99
99
100
- - uses : actions/cache@v3
100
+ - uses : actions/cache@v4
101
101
id : npm-g-cache
102
102
with :
103
103
path : |
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ runs:
113
113
cache : ' npm'
114
114
cache-dependency-path : ' **/package-lock.json'
115
115
116
- - uses : actions/cache@v3
116
+ - uses : actions/cache@v4
117
117
id : npm-cache-root
118
118
with :
119
119
path : node_modules
@@ -131,7 +131,7 @@ runs:
131
131
echo "LIB_PATH=$lib_path" >> $GITHUB_OUTPUT
132
132
echo "BIN_PATH=${lib_path/\/lib//bin}" >> $GITHUB_OUTPUT
133
133
134
- - uses : actions/cache@v3
134
+ - uses : actions/cache@v4
135
135
id : npm-g-cache
136
136
with :
137
137
path : |
@@ -185,27 +185,27 @@ runs:
185
185
run : echo "deploy_codebase=ssr" >> $GITHUB_ENV
186
186
187
187
- if : env.deploy_codebase == '' || env.deploy_codebase == 'many'
188
- uses : actions/cache@v3
188
+ uses : actions/cache@v4
189
189
id : npm-cache-many
190
190
with :
191
191
path : functions/many/node_modules
192
192
key : ${{ runner.os }}-npm-${{ hashFiles('functions/many/package-lock.json') }}
193
193
194
194
- if : env.deploy_codebase == '' || env.deploy_codebase == 'ssr'
195
- uses : actions/cache@v3
195
+ uses : actions/cache@v4
196
196
id : npm-cache-ssr
197
197
with :
198
198
path : functions/ssr/node_modules
199
199
key : ${{ runner.os }}-npm-${{ hashFiles('functions/ssr/package-lock.json') }}
200
200
201
201
- if : env.deploy_codebase == '' || env.deploy_codebase == 'ssr'
202
- uses : actions/cache@v3
202
+ uses : actions/cache@v4
203
203
with :
204
204
path : functions/ssr/.cache
205
205
key : ${{ runner.os }}-${{ env.year }}-storefront
206
206
207
207
- if : env.deploy_codebase == '' || env.deploy_codebase == 'with-apps'
208
- uses : actions/cache@v3
208
+ uses : actions/cache@v4
209
209
id : npm-cache-with-apps
210
210
with :
211
211
path : functions/with-apps/node_modules
You can’t perform that action at this time.
0 commit comments