27
27
28
28
steps :
29
29
- name : " Checkout"
30
- uses : actions/checkout@v4
30
+ uses : actions/checkout@v5
31
31
with :
32
32
fetch-depth : 0
33
33
@@ -155,16 +155,16 @@ jobs:
155
155
if : github.event_name == 'pull_request' && needs.compiler-tests.outputs.compiler_changed == 'true'
156
156
runs-on : " ubuntu-latest"
157
157
steps :
158
- - uses : actions/checkout@v4
158
+ - uses : actions/checkout@v5
159
159
160
160
- name : Get base commit SHA
161
161
id : base
162
162
run : echo "base_sha=${{ github.event.pull_request.base.sha }}" >> "$GITHUB_OUTPUT"
163
163
164
164
- name : Set up Node.js
165
- uses : actions/setup-node@v4
165
+ uses : actions/setup-node@v5
166
166
with :
167
- node-version : 20
167
+ node-version : 22
168
168
169
169
- name : Install dependencies
170
170
working-directory : .github/scripts
@@ -188,7 +188,7 @@ jobs:
188
188
189
189
# saved to phar-file-checksum/phpstan.phar
190
190
- name : Download old artifact by ID
191
- uses : actions/download-artifact@v4
191
+ uses : actions/download-artifact@v5
192
192
with :
193
193
artifact-ids : ${{ steps.find-artifact.outputs.artifact_id }}
194
194
run-id : ${{ steps.find-artifact.outputs.run_id }}
@@ -209,7 +209,7 @@ jobs:
209
209
steps :
210
210
# saved to phpstan.phar
211
211
- name : " Download base phpstan.phar"
212
- uses : actions/download-artifact@v4
212
+ uses : actions/download-artifact@v5
213
213
with :
214
214
name : phar-file-checksum-base
215
215
@@ -228,18 +228,18 @@ jobs:
228
228
needs : download-base-sha-phar
229
229
runs-on : " ubuntu-latest"
230
230
steps :
231
- - uses : actions/checkout@v4
231
+ - uses : actions/checkout@v5
232
232
233
233
# saved to phar-file-checksum/phpstan.phar
234
234
- name : " Download phpstan.phar"
235
- uses : actions/download-artifact@v4
235
+ uses : actions/download-artifact@v5
236
236
with :
237
237
name : phar-file-checksum
238
238
path : phar-file-checksum
239
239
240
240
# saved to phar-file-checksum-base/phpstan.phar
241
241
- name : " Download base phpstan.phar"
242
- uses : actions/download-artifact@v4
242
+ uses : actions/download-artifact@v5
243
243
with :
244
244
name : phar-file-checksum-base
245
245
path : phar-file-checksum-base
@@ -294,7 +294,7 @@ jobs:
294
294
git_commit_gpgsign : true
295
295
296
296
- name : " Checkout phpstan-dist"
297
- uses : actions/checkout@v4
297
+ uses : actions/checkout@v5
298
298
with :
299
299
repository : phpstan/phpstan
300
300
path : phpstan-dist
@@ -307,7 +307,7 @@ jobs:
307
307
run : echo "sha=$(sed -n '2p' .phar-checksum)" >> $GITHUB_OUTPUT
308
308
309
309
- name : " Checkout phpstan-src"
310
- uses : actions/checkout@v4
310
+ uses : actions/checkout@v5
311
311
with :
312
312
fetch-depth : 0
313
313
path : phpstan-src
@@ -337,7 +337,7 @@ jobs:
337
337
fi
338
338
339
339
- name : " Download phpstan.phar"
340
- uses : actions/download-artifact@v4
340
+ uses : actions/download-artifact@v5
341
341
with :
342
342
name : phar-file
343
343
@@ -383,7 +383,7 @@ jobs:
383
383
384
384
- name : " Commit PHAR - tag"
385
385
if : " startsWith(github.ref, 'refs/tags/')"
386
- uses : stefanzweifel/git-auto-commit-action@v5
386
+ uses : stefanzweifel/git-auto-commit-action@v6
387
387
with :
388
388
commit_user_name : " phpstan-bot"
389
389
commit_user_email :
" [email protected] "
0 commit comments