6
6
runs-on : ubuntu-latest
7
7
steps :
8
8
- name : Checkout repo
9
- uses : actions/checkout@v2
9
+ uses : actions/checkout@v3
10
10
with :
11
11
persist-credentials : false
12
12
13
13
- name : Setup Node.js
14
- uses : actions/setup-node@v2
14
+ uses : actions/setup-node@v3
15
15
with :
16
16
cache : npm
17
17
node-version-file : ' .node-version'
41
41
runs-on : ubuntu-latest
42
42
steps :
43
43
- name : Checkout repo
44
- uses : actions/checkout@v2
44
+ uses : actions/checkout@v3
45
45
with :
46
46
persist-credentials : false
47
47
@@ -64,12 +64,12 @@ jobs:
64
64
runs-on : ubuntu-latest
65
65
steps :
66
66
- name : Checkout repo
67
- uses : actions/checkout@v2
67
+ uses : actions/checkout@v3
68
68
with :
69
69
persist-credentials : false
70
70
71
71
- name : Setup Node.js
72
- uses : actions/setup-node@v2
72
+ uses : actions/setup-node@v3
73
73
with :
74
74
cache : npm
75
75
node-version-file : ' .node-version'
@@ -92,12 +92,12 @@ jobs:
92
92
runs-on : ubuntu-latest
93
93
steps :
94
94
- name : Checkout repo
95
- uses : actions/checkout@v2
95
+ uses : actions/checkout@v3
96
96
with :
97
97
persist-credentials : false
98
98
99
99
- name : Setup Node.js
100
- uses : actions/setup-node@v2
100
+ uses : actions/setup-node@v3
101
101
with :
102
102
node-version-file : ' .node-version'
103
103
# We install bunch of packages during integration tests without locking them
@@ -114,12 +114,12 @@ jobs:
114
114
runs-on : ubuntu-latest
115
115
steps :
116
116
- name : Checkout repo
117
- uses : actions/checkout@v2
117
+ uses : actions/checkout@v3
118
118
with :
119
119
persist-credentials : false
120
120
121
121
- name : Setup Node.js
122
- uses : actions/setup-node@v2
122
+ uses : actions/setup-node@v3
123
123
with :
124
124
cache : npm
125
125
node-version-file : ' .node-version'
@@ -138,12 +138,12 @@ jobs:
138
138
node_version_to_setup : [14, 16, 18]
139
139
steps :
140
140
- name : Checkout repo
141
- uses : actions/checkout@v2
141
+ uses : actions/checkout@v3
142
142
with :
143
143
persist-credentials : false
144
144
145
145
- name : Setup Node.js v${{ matrix.node_version_to_setup }}
146
- uses : actions/setup-node@v2
146
+ uses : actions/setup-node@v3
147
147
with :
148
148
cache : npm
149
149
node-version : ${{ matrix.node_version_to_setup }}
@@ -160,12 +160,12 @@ jobs:
160
160
needs : [test, fuzz, lint, integrationTests]
161
161
steps :
162
162
- name : Checkout repo
163
- uses : actions/checkout@v2
163
+ uses : actions/checkout@v3
164
164
with :
165
165
persist-credentials : false
166
166
167
167
- name : Setup Node.js
168
- uses : actions/setup-node@v2
168
+ uses : actions/setup-node@v3
169
169
with :
170
170
cache : npm
171
171
node-version-file : ' .node-version'
@@ -177,7 +177,7 @@ jobs:
177
177
run : npm run build:npm
178
178
179
179
- name : Upload npmDist package
180
- uses : actions/upload-artifact@v2
180
+ uses : actions/upload-artifact@v3
181
181
with :
182
182
name : npmDist
183
183
path : ./npmDist
@@ -188,12 +188,12 @@ jobs:
188
188
needs : [test, fuzz, lint, integrationTests]
189
189
steps :
190
190
- name : Checkout repo
191
- uses : actions/checkout@v2
191
+ uses : actions/checkout@v3
192
192
with :
193
193
persist-credentials : false
194
194
195
195
- name : Setup Node.js
196
- uses : actions/setup-node@v2
196
+ uses : actions/setup-node@v3
197
197
with :
198
198
cache : npm
199
199
node-version-file : ' .node-version'
@@ -205,7 +205,7 @@ jobs:
205
205
run : npm run build:deno
206
206
207
207
- name : Upload denoDist package
208
- uses : actions/upload-artifact@v2
208
+ uses : actions/upload-artifact@v3
209
209
with :
210
210
name : denoDist
211
211
path : ./denoDist
@@ -215,12 +215,12 @@ jobs:
215
215
runs-on : ubuntu-latest
216
216
steps :
217
217
- name : Checkout repo
218
- uses : actions/checkout@v2
218
+ uses : actions/checkout@v3
219
219
with :
220
220
persist-credentials : false
221
221
222
222
- name : Setup Node.js
223
- uses : actions/setup-node@v2
223
+ uses : actions/setup-node@v3
224
224
with :
225
225
cache : npm
226
226
node-version-file : ' .node-version'
@@ -232,7 +232,7 @@ jobs:
232
232
run : npm run build:website
233
233
234
234
- name : Upload denoDist package
235
- uses : actions/upload-artifact@v2
235
+ uses : actions/upload-artifact@v3
236
236
with :
237
237
name : websiteDist
238
238
path : ./websiteDist
0 commit comments