@@ -30,16 +30,16 @@ jobs:
30
30
31
31
steps :
32
32
- name : Checkout
33
- uses : actions/checkout@v2
33
+ uses : actions/checkout@v3
34
34
35
35
- name : Install Node.js 16.x
36
- uses : actions/setup-node@v2
36
+ uses : actions/setup-node@v3
37
37
with :
38
38
node-version : ' 14'
39
39
registry-url : ' https://registry.npmjs.org'
40
40
41
41
# - name: Install Python 2.7
42
- # uses: actions/setup-python@v2
42
+ # uses: actions/setup-python@v3
43
43
# with:
44
44
# python-version: '2.7'
45
45
80
80
npm run build
81
81
82
82
- name : Upload [GitHub Actions]
83
- uses : actions/upload-artifact@v2
83
+ uses : actions/upload-artifact@v3
84
84
with :
85
85
name : ${{ env.JOB_TRANSFER_ARTIFACT }}
86
86
path : dist
@@ -107,13 +107,13 @@ jobs:
107
107
108
108
steps :
109
109
- name : Download job transfer artifact
110
- uses : actions/download-artifact@v2
110
+ uses : actions/download-artifact@v3
111
111
with :
112
112
name : ${{ env.JOB_TRANSFER_ARTIFACT }}
113
113
path : ${{ env.JOB_TRANSFER_ARTIFACT }}
114
114
115
115
- name : Upload tester build artifact
116
- uses : actions/upload-artifact@v2
116
+ uses : actions/upload-artifact@v3
117
117
with :
118
118
name : ${{ matrix.artifact.name }}
119
119
path : ${{ env.JOB_TRANSFER_ARTIFACT }}/${{ matrix.artifact.path }}
@@ -124,7 +124,7 @@ jobs:
124
124
runs-on : ubuntu-latest
125
125
steps :
126
126
- name : Download [GitHub Actions]
127
- uses : actions/download-artifact@v2
127
+ uses : actions/download-artifact@v3
128
128
with :
129
129
name : ${{ env.JOB_TRANSFER_ARTIFACT }}
130
130
path : ${{ env.JOB_TRANSFER_ARTIFACT }}
0 commit comments