9
9
contents : read # for actions/checkout
10
10
steps :
11
11
- name : Checkout repo
12
- uses : actions/checkout@v3
12
+ uses : actions/checkout@v4
13
13
with :
14
14
persist-credentials : false
15
15
16
16
- name : Setup Node.js
17
- uses : actions/setup-node@v3
17
+ uses : actions/setup-node@v4
18
18
with :
19
19
cache : npm
20
20
node-version-file : ' .node-version'
46
46
contents : read # for actions/checkout
47
47
steps :
48
48
- name : Checkout repo
49
- uses : actions/checkout@v3
49
+ uses : actions/checkout@v4
50
50
with :
51
51
persist-credentials : false
52
52
@@ -71,12 +71,12 @@ jobs:
71
71
contents : read # for actions/checkout
72
72
steps :
73
73
- name : Checkout repo
74
- uses : actions/checkout@v3
74
+ uses : actions/checkout@v4
75
75
with :
76
76
persist-credentials : false
77
77
78
78
- name : Setup Node.js
79
- uses : actions/setup-node@v3
79
+ uses : actions/setup-node@v4
80
80
with :
81
81
cache : npm
82
82
node-version-file : ' .node-version'
@@ -100,12 +100,12 @@ jobs:
100
100
contents : read # for actions/checkout
101
101
steps :
102
102
- name : Checkout repo
103
- uses : actions/checkout@v3
103
+ uses : actions/checkout@v4
104
104
with :
105
105
persist-credentials : false
106
106
107
107
- name : Setup Node.js
108
- uses : actions/setup-node@v3
108
+ uses : actions/setup-node@v4
109
109
with :
110
110
node-version-file : ' .node-version'
111
111
# We install bunch of packages during integration tests without locking them
@@ -124,12 +124,12 @@ jobs:
124
124
contents : read # for actions/checkout
125
125
steps :
126
126
- name : Checkout repo
127
- uses : actions/checkout@v3
127
+ uses : actions/checkout@v4
128
128
with :
129
129
persist-credentials : false
130
130
131
131
- name : Setup Node.js
132
- uses : actions/setup-node@v3
132
+ uses : actions/setup-node@v4
133
133
with :
134
134
cache : npm
135
135
node-version-file : ' .node-version'
@@ -150,12 +150,12 @@ jobs:
150
150
contents : read # for actions/checkout
151
151
steps :
152
152
- name : Checkout repo
153
- uses : actions/checkout@v3
153
+ uses : actions/checkout@v4
154
154
with :
155
155
persist-credentials : false
156
156
157
157
- name : Setup Node.js v${{ matrix.node_version_to_setup }}
158
- uses : actions/setup-node@v3
158
+ uses : actions/setup-node@v4
159
159
with :
160
160
cache : npm
161
161
node-version : ${{ matrix.node_version_to_setup }}
@@ -174,17 +174,17 @@ jobs:
174
174
security-events : write # for codeql-action
175
175
steps :
176
176
- name : Checkout repo
177
- uses : actions/checkout@v3
177
+ uses : actions/checkout@v4
178
178
with :
179
179
persist-credentials : false
180
180
181
181
- name : Initialize CodeQL
182
- uses : github/codeql-action/init@v2
182
+ uses : github/codeql-action/init@v3
183
183
with :
184
184
languages : ' javascript, typescript'
185
185
186
186
- name : Perform CodeQL analysis
187
- uses : github/codeql-action/analyze@v2
187
+ uses : github/codeql-action/analyze@v3
188
188
189
189
build-npm-dist :
190
190
name : Build 'npmDist' artifact
@@ -193,12 +193,12 @@ jobs:
193
193
contents : read # for actions/checkout
194
194
steps :
195
195
- name : Checkout repo
196
- uses : actions/checkout@v3
196
+ uses : actions/checkout@v4
197
197
with :
198
198
persist-credentials : false
199
199
200
200
- name : Setup Node.js
201
- uses : actions/setup-node@v3
201
+ uses : actions/setup-node@v4
202
202
with :
203
203
cache : npm
204
204
node-version-file : ' .node-version'
@@ -210,7 +210,7 @@ jobs:
210
210
run : npm run build:npm
211
211
212
212
- name : Upload npmDist package
213
- uses : actions/upload-artifact@v3
213
+ uses : actions/upload-artifact@v4
214
214
with :
215
215
name : npmDist
216
216
path : ./npmDist
@@ -222,12 +222,12 @@ jobs:
222
222
contents : read # for actions/checkout
223
223
steps :
224
224
- name : Checkout repo
225
- uses : actions/checkout@v3
225
+ uses : actions/checkout@v4
226
226
with :
227
227
persist-credentials : false
228
228
229
229
- name : Setup Node.js
230
- uses : actions/setup-node@v3
230
+ uses : actions/setup-node@v4
231
231
with :
232
232
cache : npm
233
233
node-version-file : ' .node-version'
@@ -239,7 +239,7 @@ jobs:
239
239
run : npm run build:deno
240
240
241
241
- name : Upload denoDist package
242
- uses : actions/upload-artifact@v3
242
+ uses : actions/upload-artifact@v4
243
243
with :
244
244
name : denoDist
245
245
path : ./denoDist
@@ -251,12 +251,12 @@ jobs:
251
251
contents : read # for actions/checkout
252
252
steps :
253
253
- name : Checkout repo
254
- uses : actions/checkout@v3
254
+ uses : actions/checkout@v4
255
255
with :
256
256
persist-credentials : false
257
257
258
258
- name : Setup Node.js
259
- uses : actions/setup-node@v3
259
+ uses : actions/setup-node@v4
260
260
with :
261
261
cache : npm
262
262
node-version-file : ' .node-version'
@@ -268,7 +268,7 @@ jobs:
268
268
run : npm run build:website
269
269
270
270
- name : Upload denoDist package
271
- uses : actions/upload-artifact@v3
271
+ uses : actions/upload-artifact@v4
272
272
with :
273
273
name : websiteDist
274
274
path : ./websiteDist
0 commit comments