9999 echo "GIT_FETCH_DEPTH=2" >> "${GITHUB_ENV}"
100100 fi
101101 - name : Check out the revision with minimal required history
102- uses : actions/checkout@v4
102+ uses : actions/checkout@v5
103103 with :
104104 fetch-depth : ${{ env.GIT_FETCH_DEPTH }}
105105 lfs : false
@@ -149,7 +149,7 @@ jobs:
149149 fi
150150 pants lint --changed-since=$BASE_REF --changed-dependents=transitive
151151 - name : Upload pants log
152- uses : actions/upload-artifact@v4
152+ uses : actions/upload-artifact@v5
153153 with :
154154 name : pants.lint.log
155155 path : .pants.d/workdir/pants.log
@@ -167,7 +167,7 @@ jobs:
167167 runs-on : ubuntu-latest
168168 steps :
169169 - name : Check out the revision
170- uses : actions/checkout@v4
170+ uses : actions/checkout@v5
171171 with :
172172 lfs : false
173173 - name : Parse versions from config
@@ -227,7 +227,7 @@ jobs:
227227 echo "GIT_FETCH_DEPTH=2" >> "${GITHUB_ENV}"
228228 fi
229229 - name : Check out the revision with minimal required history
230- uses : actions/checkout@v4
230+ uses : actions/checkout@v5
231231 with :
232232 fetch-depth : ${{ env.GIT_FETCH_DEPTH }}
233233 lfs : false
@@ -273,7 +273,7 @@ jobs:
273273 fi
274274 pants check --changed-since=$BASE_REF --changed-dependents=transitive
275275 - name : Upload pants log
276- uses : actions/upload-artifact@v4
276+ uses : actions/upload-artifact@v5
277277 with :
278278 name : pants.check.log
279279 path : .pants.d/workdir/pants.log
@@ -294,7 +294,7 @@ jobs:
294294 echo "GIT_FETCH_DEPTH=2" >> "${GITHUB_ENV}"
295295 fi
296296 - name : Check out the revision with minimal required history
297- uses : actions/checkout@v4
297+ uses : actions/checkout@v5
298298 with :
299299 fetch-depth : ${{ env.GIT_FETCH_DEPTH }}
300300 lfs : false
@@ -340,7 +340,7 @@ jobs:
340340 fi
341341 pants test --changed-since=$BASE_REF --changed-dependents=transitive -- -v
342342 - name : Upload pants log
343- uses : actions/upload-artifact@v4
343+ uses : actions/upload-artifact@v5
344344 with :
345345 name : pants.test.log
346346 path : .pants.d/workdir/pants.log
@@ -363,7 +363,7 @@ jobs:
363363 SCIENCE_AUTH_API_GITHUB_COM_BEARER : ${{ secrets.GITHUB_TOKEN }}
364364 steps :
365365 - name : Check out the revision
366- uses : actions/checkout@v4
366+ uses : actions/checkout@v5
367367 - name : Fetch remote tags
368368 run : git fetch origin 'refs/tags/*:refs/tags/*' -f
369369 - name : Git LFS Pull
@@ -402,12 +402,12 @@ jobs:
402402 mv dist/checksum.txt dist/checksum-${platform_suffix}.txt
403403 rm dist/*.sha256
404404 - name : Upload scies
405- uses : actions/upload-artifact@v4
405+ uses : actions/upload-artifact@v5
406406 with :
407407 name : scies-${{ matrix.os }}
408408 path : dist/*
409409 - name : Upload pants log
410- uses : actions/upload-artifact@v4
410+ uses : actions/upload-artifact@v5
411411 with :
412412 name : pants-${{ matrix.os }}.build-scies.log
413413 path : .pants.d/workdir/pants.log
@@ -420,7 +420,7 @@ jobs:
420420 runs-on : ubuntu-22.04
421421 steps :
422422 - name : Check out the revision
423- uses : actions/checkout@v4
423+ uses : actions/checkout@v5
424424 - name : Fetch remote tags
425425 run : git fetch origin 'refs/tags/*:refs/tags/*' -f
426426 - name : Git LFS Pull
@@ -448,12 +448,12 @@ jobs:
448448 run : |
449449 ./scripts/build-wheels.sh
450450 - name : Upload wheels
451- uses : actions/upload-artifact@v4
451+ uses : actions/upload-artifact@v5
452452 with :
453453 name : wheels
454454 path : dist/*
455455 - name : Upload pants log
456- uses : actions/upload-artifact@v4
456+ uses : actions/upload-artifact@v5
457457 with :
458458 name : pants.build-wheels.log
459459 path : .pants.d/workdir/pants.log
@@ -488,7 +488,7 @@ jobs:
488488 contents : write
489489 environment : deploy-to-pypi
490490 steps :
491- - uses : actions/checkout@v4
491+ - uses : actions/checkout@v5
492492 - name : Fetch remote tags
493493 run : git fetch origin 'refs/tags/*:refs/tags/*' -f
494494 - name : Extract Python version from pants.toml
@@ -507,12 +507,12 @@ jobs:
507507 python ./scripts/extract-release-changelog.py
508508 python ./scripts/determine-release-type.py
509509 - name : Download wheels
510- uses : actions/download-artifact@v5
510+ uses : actions/download-artifact@v6
511511 with :
512512 name : wheels
513513 path : dist
514514 - name : Download scies
515- uses : actions/download-artifact@v5
515+ uses : actions/download-artifact@v6
516516 with :
517517 pattern : scies-*
518518 path : dist
@@ -522,7 +522,7 @@ jobs:
522522 cat dist/checksum-*.txt > dist/checksum.txt
523523 sort -u -k2 dist/checksum.txt -o dist/checksum.txt
524524 - name : Download SBOM report
525- uses : actions/download-artifact@v5
525+ uses : actions/download-artifact@v6
526526 with :
527527 name : SBOM report
528528 path : dist
@@ -632,7 +632,7 @@ jobs:
632632
633633 steps :
634634 - name : Check out the revision
635- uses : actions/checkout@v4
635+ uses : actions/checkout@v5
636636 - name : Git LFS Pull
637637 run : git lfs pull
638638 - name : Extract Python version from pants.toml
@@ -659,7 +659,7 @@ jobs:
659659 with :
660660 activate-conda : false
661661 - name : Download wheels
662- uses : actions/download-artifact@v5
662+ uses : actions/download-artifact@v6
663663 with :
664664 name : wheels
665665 path : dist
0 commit comments