66 runs-on : ubuntu-latest
77 steps :
88 - name : Checkout repo
9- uses : actions/checkout@v2
9+ uses : actions/checkout@v3
1010 with :
1111 persist-credentials : false
1212
1313 - name : Setup Node.js
14- uses : actions/setup-node@v2
14+ uses : actions/setup-node@v3
1515 with :
1616 cache : npm
1717 node-version-file : ' .node-version'
4141 runs-on : ubuntu-latest
4242 steps :
4343 - name : Checkout repo
44- uses : actions/checkout@v2
44+ uses : actions/checkout@v3
4545 with :
4646 persist-credentials : false
4747
@@ -64,12 +64,12 @@ jobs:
6464 runs-on : ubuntu-latest
6565 steps :
6666 - name : Checkout repo
67- uses : actions/checkout@v2
67+ uses : actions/checkout@v3
6868 with :
6969 persist-credentials : false
7070
7171 - name : Setup Node.js
72- uses : actions/setup-node@v2
72+ uses : actions/setup-node@v3
7373 with :
7474 cache : npm
7575 node-version-file : ' .node-version'
@@ -92,12 +92,12 @@ jobs:
9292 runs-on : ubuntu-latest
9393 steps :
9494 - name : Checkout repo
95- uses : actions/checkout@v2
95+ uses : actions/checkout@v3
9696 with :
9797 persist-credentials : false
9898
9999 - name : Setup Node.js
100- uses : actions/setup-node@v2
100+ uses : actions/setup-node@v3
101101 with :
102102 node-version-file : ' .node-version'
103103 # We install bunch of packages during integration tests without locking them
@@ -114,12 +114,12 @@ jobs:
114114 runs-on : ubuntu-latest
115115 steps :
116116 - name : Checkout repo
117- uses : actions/checkout@v2
117+ uses : actions/checkout@v3
118118 with :
119119 persist-credentials : false
120120
121121 - name : Setup Node.js
122- uses : actions/setup-node@v2
122+ uses : actions/setup-node@v3
123123 with :
124124 cache : npm
125125 node-version-file : ' .node-version'
@@ -138,12 +138,12 @@ jobs:
138138 node_version_to_setup : [14, 16, 18]
139139 steps :
140140 - name : Checkout repo
141- uses : actions/checkout@v2
141+ uses : actions/checkout@v3
142142 with :
143143 persist-credentials : false
144144
145145 - name : Setup Node.js v${{ matrix.node_version_to_setup }}
146- uses : actions/setup-node@v2
146+ uses : actions/setup-node@v3
147147 with :
148148 cache : npm
149149 node-version : ${{ matrix.node_version_to_setup }}
@@ -160,12 +160,12 @@ jobs:
160160 needs : [test, fuzz, lint, integrationTests]
161161 steps :
162162 - name : Checkout repo
163- uses : actions/checkout@v2
163+ uses : actions/checkout@v3
164164 with :
165165 persist-credentials : false
166166
167167 - name : Setup Node.js
168- uses : actions/setup-node@v2
168+ uses : actions/setup-node@v3
169169 with :
170170 cache : npm
171171 node-version-file : ' .node-version'
@@ -177,7 +177,7 @@ jobs:
177177 run : npm run build:npm
178178
179179 - name : Upload npmDist package
180- uses : actions/upload-artifact@v2
180+ uses : actions/upload-artifact@v3
181181 with :
182182 name : npmDist
183183 path : ./npmDist
@@ -188,12 +188,12 @@ jobs:
188188 needs : [test, fuzz, lint, integrationTests]
189189 steps :
190190 - name : Checkout repo
191- uses : actions/checkout@v2
191+ uses : actions/checkout@v3
192192 with :
193193 persist-credentials : false
194194
195195 - name : Setup Node.js
196- uses : actions/setup-node@v2
196+ uses : actions/setup-node@v3
197197 with :
198198 cache : npm
199199 node-version-file : ' .node-version'
@@ -205,7 +205,7 @@ jobs:
205205 run : npm run build:deno
206206
207207 - name : Upload denoDist package
208- uses : actions/upload-artifact@v2
208+ uses : actions/upload-artifact@v3
209209 with :
210210 name : denoDist
211211 path : ./denoDist
@@ -215,12 +215,12 @@ jobs:
215215 runs-on : ubuntu-latest
216216 steps :
217217 - name : Checkout repo
218- uses : actions/checkout@v2
218+ uses : actions/checkout@v3
219219 with :
220220 persist-credentials : false
221221
222222 - name : Setup Node.js
223- uses : actions/setup-node@v2
223+ uses : actions/setup-node@v3
224224 with :
225225 cache : npm
226226 node-version-file : ' .node-version'
@@ -232,7 +232,7 @@ jobs:
232232 run : npm run build:website
233233
234234 - name : Upload denoDist package
235- uses : actions/upload-artifact@v2
235+ uses : actions/upload-artifact@v3
236236 with :
237237 name : websiteDist
238238 path : ./websiteDist
0 commit comments