@@ -10,17 +10,17 @@ jobs:
1010 runs-on : ubuntu-latest
1111 steps :
1212 - name : Check out repository
13- uses : actions/checkout@v2
14- - uses : actions/setup-node@v2
13+ uses : actions/checkout@v3
14+ - uses : actions/setup-node@v3
1515 with :
16- node-version : ' 12 '
16+ node-version : ' 16 '
1717 - name : Build with ncc
1818 run : |
1919 npm install -g yarn
2020 yarn install
2121 yarn run build
2222 - name : Archive dist
23- uses : actions/upload-artifact@v2
23+ uses : actions/upload-artifact@v3
2424 with :
2525 name : build
2626 path : dist
3131 name : " echo-1-test [trigger|by workflow name]"
3232 steps :
3333 - name : Check out repository
34- uses : actions/checkout@v2
34+ uses : actions/checkout@v3
3535 - name : Download dist
36- uses : actions/download-artifact@v2
36+ uses : actions/download-artifact@v3
3737 with :
3838 name : build
3939 path : dist
5151 name : " echo-2-test [trigger|by workflow filename]"
5252 steps :
5353 - name : Check out repository
54- uses : actions/checkout@v2
54+ uses : actions/checkout@v3
5555 - name : Download dist
56- uses : actions/download-artifact@v2
56+ uses : actions/download-artifact@v3
5757 with :
5858 name : build
5959 path : dist
7878 name : " long-running-test [trigger+wait|by workflow filename|shoud succeed]"
7979 steps :
8080 - name : Check out repository
81- uses : actions/checkout@v2
81+ uses : actions/checkout@v3
8282 - name : Download dist
83- uses : actions/download-artifact@v2
83+ uses : actions/download-artifact@v3
8484 with :
8585 name : build
8686 path : dist
@@ -108,9 +108,9 @@ jobs:
108108 name : " failing-test [trigger+wait|by workflow filename|shoud report failure]"
109109 steps :
110110 - name : Check out repository
111- uses : actions/checkout@v2
111+ uses : actions/checkout@v3
112112 - name : Download dist
113- uses : actions/download-artifact@v2
113+ uses : actions/download-artifact@v3
114114 with :
115115 name : build
116116 path : dist
@@ -139,9 +139,9 @@ jobs:
139139 name : " timeout-test [trigger+wait|by workflow filename|shoud report timed_out]"
140140 steps :
141141 - name : Check out repository
142- uses : actions/checkout@v2
142+ uses : actions/checkout@v3
143143 - name : Download dist
144- uses : actions/download-artifact@v2
144+ uses : actions/download-artifact@v3
145145 with :
146146 name : build
147147 path : dist
@@ -176,9 +176,9 @@ jobs:
176176 runs-on : ubuntu-latest
177177 steps :
178178 - name : Check out repository
179- uses : actions/checkout@v2
179+ uses : actions/checkout@v3
180180 - name : Download dist
181- uses : actions/download-artifact@v2
181+ uses : actions/download-artifact@v3
182182 with :
183183 name : build
184184 path : dist
0 commit comments