20
20
runs-on : ubuntu-latest
21
21
steps :
22
22
- name : Checkout repository
23
- uses : actions/checkout@v3
23
+ uses : actions/checkout@v5
24
24
with :
25
25
ref : main
26
26
fetch-depth : 0
90
90
runs-on : ubuntu-latest
91
91
steps :
92
92
- name : Checkout repository
93
- uses : actions/checkout@v4
93
+ uses : actions/checkout@v5
94
94
95
95
- name : Set up Docker Buildx
96
96
uses : docker/setup-buildx-action@v3
@@ -214,11 +214,11 @@ jobs:
214
214
215
215
steps :
216
216
- name : Checkout code
217
- uses : actions/checkout@v4
217
+ uses : actions/checkout@v5
218
218
219
219
- name : Setup Go
220
220
if : matrix.container != 'rockylinux'
221
- uses : actions/setup-go@v5
221
+ uses : actions/setup-go@v6
222
222
with :
223
223
go-version-file : go.mod
224
224
cache-dependency-path : go.sum
@@ -303,13 +303,13 @@ jobs:
303
303
labels : [self-hosted, Windows, signtool]
304
304
steps :
305
305
- name : Checkout SignTool
306
- uses : actions/checkout@v4
306
+ uses : actions/checkout@v5
307
307
with :
308
308
repository : ansys-internal/signtool-ansys-apps
309
309
token : ${{ secrets.SIGNTOOL_ACCESS_TOKEN }}
310
310
311
311
- name : Download Windows artifacts
312
- uses : actions/download-artifact@v4
312
+ uses : actions/download-artifact@v5
313
313
with :
314
314
pattern : windows_*_binaries
315
315
path : signtool/installer
@@ -361,20 +361,20 @@ jobs:
361
361
needs : [sign-windows-binaries, release-docker]
362
362
runs-on : ubuntu-latest
363
363
steps :
364
- - uses : actions/checkout@v4
364
+ - uses : actions/checkout@v5
365
365
366
366
# Create a directory to collect all binaries
367
367
- name : Create release directory
368
368
run : mkdir -p release_files
369
369
370
370
# Download all artifacts to the release directory
371
- - uses : actions/download-artifact@v4
371
+ - uses : actions/download-artifact@v5
372
372
with :
373
373
pattern : " *_binaries*"
374
374
path : release_files
375
375
merge-multiple : true
376
376
377
- - uses : actions/download-artifact@v4
377
+ - uses : actions/download-artifact@v5
378
378
with :
379
379
name : windows-binaries-signed
380
380
path : release_files
@@ -407,7 +407,7 @@ jobs:
407
407
needs : [release, docs-build]
408
408
steps :
409
409
- name : Deploy the stable documentation
410
- uses : ansys/actions/doc-deploy-stable@v9
410
+ uses : ansys/actions/doc-deploy-stable@v10
411
411
with :
412
412
cname : ${{ env.DOCUMENTATION_CNAME }}
413
413
token : ${{ secrets.PYANSYS_CI_BOT_TOKEN }}
@@ -428,7 +428,7 @@ jobs:
428
428
git clone --branch main https://${{ secrets.PYANSYS_CI_BOT_TOKEN }}@github.com/ansys/aali.git
429
429
430
430
- name : Setup Go
431
- uses : actions/setup-go@v5
431
+ uses : actions/setup-go@v6
432
432
with :
433
433
go-version-file : ' aali/scripts/releasehelper/go.mod'
434
434
0 commit comments