99 contents : read # for actions/checkout
1010 steps :
1111 - name : Checkout repo
12- uses : actions/checkout@v3
12+ uses : actions/checkout@v4
1313 with :
1414 persist-credentials : false
1515
1616 - name : Setup Node.js
17- uses : actions/setup-node@v3
17+ uses : actions/setup-node@v4
1818 with :
1919 cache : npm
2020 node-version-file : ' .node-version'
4646 contents : read # for actions/checkout
4747 steps :
4848 - name : Checkout repo
49- uses : actions/checkout@v3
49+ uses : actions/checkout@v4
5050 with :
5151 persist-credentials : false
5252
@@ -71,12 +71,12 @@ jobs:
7171 contents : read # for actions/checkout
7272 steps :
7373 - name : Checkout repo
74- uses : actions/checkout@v3
74+ uses : actions/checkout@v4
7575 with :
7676 persist-credentials : false
7777
7878 - name : Setup Node.js
79- uses : actions/setup-node@v3
79+ uses : actions/setup-node@v4
8080 with :
8181 cache : npm
8282 node-version-file : ' .node-version'
@@ -100,12 +100,12 @@ jobs:
100100 contents : read # for actions/checkout
101101 steps :
102102 - name : Checkout repo
103- uses : actions/checkout@v3
103+ uses : actions/checkout@v4
104104 with :
105105 persist-credentials : false
106106
107107 - name : Setup Node.js
108- uses : actions/setup-node@v3
108+ uses : actions/setup-node@v4
109109 with :
110110 node-version-file : ' .node-version'
111111 # We install bunch of packages during integration tests without locking them
@@ -124,12 +124,12 @@ jobs:
124124 contents : read # for actions/checkout
125125 steps :
126126 - name : Checkout repo
127- uses : actions/checkout@v3
127+ uses : actions/checkout@v4
128128 with :
129129 persist-credentials : false
130130
131131 - name : Setup Node.js
132- uses : actions/setup-node@v3
132+ uses : actions/setup-node@v4
133133 with :
134134 cache : npm
135135 node-version-file : ' .node-version'
@@ -150,12 +150,12 @@ jobs:
150150 contents : read # for actions/checkout
151151 steps :
152152 - name : Checkout repo
153- uses : actions/checkout@v3
153+ uses : actions/checkout@v4
154154 with :
155155 persist-credentials : false
156156
157157 - name : Setup Node.js v${{ matrix.node_version_to_setup }}
158- uses : actions/setup-node@v3
158+ uses : actions/setup-node@v4
159159 with :
160160 cache : npm
161161 node-version : ${{ matrix.node_version_to_setup }}
@@ -174,17 +174,17 @@ jobs:
174174 security-events : write # for codeql-action
175175 steps :
176176 - name : Checkout repo
177- uses : actions/checkout@v3
177+ uses : actions/checkout@v4
178178 with :
179179 persist-credentials : false
180180
181181 - name : Initialize CodeQL
182- uses : github/codeql-action/init@v2
182+ uses : github/codeql-action/init@v3
183183 with :
184184 languages : ' javascript, typescript'
185185
186186 - name : Perform CodeQL analysis
187- uses : github/codeql-action/analyze@v2
187+ uses : github/codeql-action/analyze@v3
188188
189189 build-npm-dist :
190190 name : Build 'npmDist' artifact
@@ -193,12 +193,12 @@ jobs:
193193 contents : read # for actions/checkout
194194 steps :
195195 - name : Checkout repo
196- uses : actions/checkout@v3
196+ uses : actions/checkout@v4
197197 with :
198198 persist-credentials : false
199199
200200 - name : Setup Node.js
201- uses : actions/setup-node@v3
201+ uses : actions/setup-node@v4
202202 with :
203203 cache : npm
204204 node-version-file : ' .node-version'
@@ -210,7 +210,7 @@ jobs:
210210 run : npm run build:npm
211211
212212 - name : Upload npmDist package
213- uses : actions/upload-artifact@v3
213+ uses : actions/upload-artifact@v4
214214 with :
215215 name : npmDist
216216 path : ./npmDist
@@ -222,12 +222,12 @@ jobs:
222222 contents : read # for actions/checkout
223223 steps :
224224 - name : Checkout repo
225- uses : actions/checkout@v3
225+ uses : actions/checkout@v4
226226 with :
227227 persist-credentials : false
228228
229229 - name : Setup Node.js
230- uses : actions/setup-node@v3
230+ uses : actions/setup-node@v4
231231 with :
232232 cache : npm
233233 node-version-file : ' .node-version'
@@ -239,7 +239,7 @@ jobs:
239239 run : npm run build:deno
240240
241241 - name : Upload denoDist package
242- uses : actions/upload-artifact@v3
242+ uses : actions/upload-artifact@v4
243243 with :
244244 name : denoDist
245245 path : ./denoDist
@@ -251,12 +251,12 @@ jobs:
251251 contents : read # for actions/checkout
252252 steps :
253253 - name : Checkout repo
254- uses : actions/checkout@v3
254+ uses : actions/checkout@v4
255255 with :
256256 persist-credentials : false
257257
258258 - name : Setup Node.js
259- uses : actions/setup-node@v3
259+ uses : actions/setup-node@v4
260260 with :
261261 cache : npm
262262 node-version-file : ' .node-version'
@@ -268,7 +268,7 @@ jobs:
268268 run : npm run build:website
269269
270270 - name : Upload denoDist package
271- uses : actions/upload-artifact@v3
271+ uses : actions/upload-artifact@v4
272272 with :
273273 name : websiteDist
274274 path : ./websiteDist
0 commit comments