19
19
- uses : actions/setup-node@v4
20
20
with :
21
21
node-version : 20.x
22
- - uses : actions/checkout@v3
22
+ - uses : actions/checkout@v4
23
23
- run : npm ci
24
24
- run : npm run build
25
25
- run : npm run format-check
37
37
steps :
38
38
# Clone this repo
39
39
- name : Checkout
40
- uses : actions/checkout@v4.1.1
40
+ uses : actions/checkout@v4
41
41
42
42
# Basic checkout
43
43
- name : Checkout basic
@@ -202,7 +202,7 @@ jobs:
202
202
steps :
203
203
# Clone this repo
204
204
- name : Checkout
205
- uses : actions/checkout@v3
205
+ uses : actions/checkout@v4
206
206
207
207
# Basic checkout using git
208
208
- name : Checkout basic
@@ -234,7 +234,7 @@ jobs:
234
234
steps :
235
235
# Clone this repo
236
236
- name : Checkout
237
- uses : actions/checkout@v3
237
+ uses : actions/checkout@v4
238
238
239
239
# Basic checkout using git
240
240
- name : Checkout basic
@@ -264,13 +264,13 @@ jobs:
264
264
steps :
265
265
# Clone this repo
266
266
- name : Checkout
267
- uses : actions/checkout@v3
267
+ uses : actions/checkout@v4
268
268
with :
269
- path : v3
269
+ path : v4
270
270
271
271
# Basic checkout using git
272
272
- name : Checkout basic
273
- uses : ./v3
273
+ uses : ./v4
274
274
with :
275
275
ref : test-data/v2/basic
276
276
- name : Verify basic
@@ -291,7 +291,7 @@ jobs:
291
291
git fetch --no-tags --depth=1 origin +refs/heads/main:refs/remotes/origin/main
292
292
293
293
# needed to make checkout post cleanup succeed
294
- - name : Fix Checkout v3
295
- uses : actions/checkout@v3
294
+ - name : Fix Checkout v4
295
+ uses : actions/checkout@v4
296
296
with :
297
- path : v3
297
+ path : v4
0 commit comments