15
15
testConfigs : ${{ steps.setTestConfigs.outputs.testConfigs }}
16
16
steps :
17
17
- name : Checkout repo
18
- uses : actions/checkout@v3
18
+ uses : actions/checkout@v4
19
19
with :
20
20
persist-credentials : false
21
21
40
40
echo ${{ github.event.number }} > ./workflow/metadata/pull_number.txt
41
41
42
42
- name : Save Metadata
43
- uses : actions/upload-artifact@v2
43
+ uses : actions/upload-artifact@v4
44
44
with :
45
45
name : metadata
46
46
path : workflow/metadata/
@@ -54,12 +54,12 @@ jobs:
54
54
testPathPattern : ${{ fromJSON(needs.getMatrix.outputs.testPathPatterns) }}
55
55
steps :
56
56
- name : Checkout repo
57
- uses : actions/checkout@v3
57
+ uses : actions/checkout@v4
58
58
with :
59
59
persist-credentials : false
60
60
61
61
- name : Setup node
62
- uses : actions/setup-node@v3
62
+ uses : actions/setup-node@v4
63
63
with :
64
64
node-version-file : ' .nvmrc'
65
65
@@ -120,7 +120,7 @@ jobs:
120
120
121
121
- name : Save Snapshot Artifact
122
122
if : steps.artifactInputs.outputs.skip != 'true'
123
- uses : actions/upload-artifact@v2
123
+ uses : actions/upload-artifact@v4
124
124
with :
125
125
name : ${{ steps.artifactInputs.outputs.name }}
126
126
path : ${{ steps.artifactInputs.outputs.filePath }}
@@ -135,12 +135,12 @@ jobs:
135
135
testConfig : ${{ fromJSON(needs.getMatrix.outputs.testConfigs) }}
136
136
steps :
137
137
- name : Checkout repo
138
- uses : actions/checkout@v3
138
+ uses : actions/checkout@v4
139
139
with :
140
140
persist-credentials : false
141
141
142
142
- name : Setup node
143
- uses : actions/setup-node@v3
143
+ uses : actions/setup-node@v4
144
144
with :
145
145
node-version-file : ' .nvmrc'
146
146
@@ -207,7 +207,7 @@ jobs:
207
207
208
208
- name : Save Snapshot Artifact
209
209
if : steps.artifactInputs.outputs.skip != 'true'
210
- uses : actions/upload-artifact@v2
210
+ uses : actions/upload-artifact@v4
211
211
with :
212
212
name : ${{ steps.artifactInputs.outputs.name }}
213
213
path : ${{ steps.artifactInputs.outputs.filePath }}
0 commit comments