@@ -30,15 +30,12 @@ jobs:
30
30
outputs :
31
31
cid : ${{ steps.ipfs.outputs.cid }}
32
32
steps :
33
- - uses : actions/checkout@v2
33
+ - uses : actions/checkout@v3.5.2
34
34
35
35
- name : Setup node
36
- uses : actions/setup-node@v2
36
+ uses : actions/setup-node@v3.6.0
37
37
with :
38
- node-version : 16.12.0
39
-
40
- run : |
41
-
38
+ node-version : 18.14.0
42
39
43
40
- name : Download build artifact
44
41
uses : actions/download-artifact@v2
47
44
path : build
48
45
49
46
- name : Cache bigger downloads
50
- uses : actions/cache@v2
47
+ uses : actions/cache@v3.3.1
51
48
id : cache
52
49
with :
53
50
path : ${{ github.workspace }}/.cache
@@ -176,12 +173,12 @@ jobs:
176
173
needs : [build, publishPreview, eslint, typecheck, test-e2e, test-unit, test-storybook]
177
174
steps :
178
175
- name : Checkout 🛎️
179
- uses : actions/checkout@v2
176
+ uses : actions/checkout@v3.5.2
180
177
with :
181
178
persist-credentials : false
182
179
183
180
- name : Cache bigger downloads
184
- uses : actions/cache@v2
181
+ uses : actions/cache@v3.3.1
185
182
id : cache
186
183
with :
187
184
path : ${{ github.workspace }}/.cache
@@ -191,7 +188,7 @@ jobs:
191
188
${{ runner.os }}-
192
189
193
190
- name : Cache build dir
194
- uses : actions/cache@v2
191
+ uses : actions/cache@v3.3.1
195
192
id : build-cache
196
193
with :
197
194
path : build
@@ -205,12 +202,9 @@ jobs:
205
202
echo ${{ needs.publishPreview.outputs.cid }} > .cid
206
203
207
204
- name : Setup node
208
- uses : actions/setup-node@v2
205
+ uses : actions/setup-node@v3.6.0
209
206
with :
210
- node-version : 16.12.0
211
-
212
- run : |
213
-
207
+ node-version : 18.14.0
214
208
215
209
- name : Install dependencies
216
210
run : npm ci --prefer-offline --no-audit --progress=false --cache ${{ github.workspace }}/.cache/npm
0 commit comments