@@ -97,13 +97,13 @@ jobs:
9797 exit 1
9898
9999 - name : Check out repository
100- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
100+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
101101 with :
102102 fetch-depth : 0
103103 token : ${{ secrets.GITHUB_TOKEN }}
104104
105105 - name : Set up Python
106- uses : actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
106+ uses : actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
107107 with :
108108 python-version : " 3.12"
109109
@@ -238,7 +238,7 @@ jobs:
238238 echo "commit_sha=${commit_sha}" >> "$GITHUB_OUTPUT"
239239
240240 - name : Upload release plan
241- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
241+ uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
242242 with :
243243 name : release-plan
244244 path : release-plan.json
@@ -257,11 +257,11 @@ jobs:
257257 version : ${{ steps.meta.outputs.version }}
258258 steps :
259259 - name : Check out repository
260- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
260+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
261261 with :
262262 ref : ${{ needs.prepare-release.outputs.commit_sha }}
263263 - name : Set up Python
264- uses : actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
264+ uses : actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
265265 with :
266266 python-version : " 3.12"
267267 - name : Upgrade pip
@@ -363,12 +363,12 @@ jobs:
363363 PY
364364 echo "version=$(cat .artifacts/version.txt)" >> "$GITHUB_OUTPUT"
365365 - name : Upload Python distributions
366- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
366+ uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
367367 with :
368368 name : python-dist-${{ github.sha }}
369369 path : dist/
370370 - name : Upload release assets
371- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
371+ uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
372372 with :
373373 name : release-assets-${{ github.sha }}
374374 path : .artifacts/release-assets/
@@ -406,7 +406,7 @@ jobs:
406406 - tigrcorn-transports
407407 steps :
408408 - name : Download Python distributions
409- uses : actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093
409+ uses : actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
410410 with :
411411 name : python-dist-${{ github.sha }}
412412 path : dist
@@ -463,7 +463,7 @@ jobs:
463463 - tigrcorn-transports
464464 steps :
465465 - name : Download Python distributions
466- uses : actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093
466+ uses : actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
467467 with :
468468 name : python-dist-${{ github.sha }}
469469 path : dist
@@ -501,11 +501,11 @@ jobs:
501501 contents : read
502502 steps :
503503 - name : Check out repository
504- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
504+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
505505 with :
506506 ref : ${{ needs.prepare-release.outputs.commit_sha }}
507507 - name : Set up Node
508- uses : actions/setup-node@v4
508+ uses : actions/setup-node@v6
509509 with :
510510 node-version : " 22"
511511 cache : npm
@@ -523,7 +523,7 @@ jobs:
523523 working-directory : packages/wt-peer-probes
524524 run : npm pack
525525 - name : Upload WebTransport peer probe tarball
526- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
526+ uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
527527 with :
528528 name : wt-peer-probes-${{ github.sha }}
529529 path : packages/wt-peer-probes/tigrcorn-wt-peer-probes-*.tgz
@@ -538,11 +538,11 @@ jobs:
538538 contents : read
539539 steps :
540540 - name : Check out repository
541- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
541+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
542542 with :
543543 ref : ${{ needs.prepare-release.outputs.commit_sha }}
544544 - name : Set up Node
545- uses : actions/setup-node@v4
545+ uses : actions/setup-node@v6
546546 with :
547547 node-version : " 22"
548548 cache : npm
@@ -561,7 +561,7 @@ jobs:
561561 run : npm run test:peer-api -- --reporter=line
562562 - name : Upload WebTransport peer probe Playwright report
563563 if : always()
564- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
564+ uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
565565 with :
566566 name : wt-peer-probes-playwright-${{ github.sha }}
567567 path : packages/wt-peer-probes/playwright-report/
@@ -578,13 +578,13 @@ jobs:
578578 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
579579 steps :
580580 - name : Check out prepared release commit
581- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
581+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
582582 with :
583583 fetch-depth : 0
584584 ref : ${{ needs.prepare-release.outputs.commit_sha }}
585585 token : ${{ secrets.GITHUB_TOKEN }}
586586 - name : Download release plan
587- uses : actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093
587+ uses : actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
588588 with :
589589 name : release-plan
590590 path : .
@@ -605,16 +605,16 @@ jobs:
605605 contents : write
606606 steps :
607607 - name : Check out repository
608- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
608+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
609609 with :
610610 ref : ${{ needs.prepare-release.outputs.commit_sha }}
611611 - name : Download WebTransport peer probe tarball
612- uses : actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093
612+ uses : actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
613613 with :
614614 name : wt-peer-probes-${{ github.sha }}
615615 path : .artifacts/wt-peer-probes
616616 - name : Create or update GitHub release with probe package
617- uses : softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe
617+ uses : softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda
618618 with :
619619 tag_name : ${{ github.event_name == 'workflow_dispatch' && needs.prepare-release.outputs.npm_release_tag || github.ref_name }}
620620 name : ${{ github.event_name == 'workflow_dispatch' && needs.prepare-release.outputs.npm_release_tag || github.ref_name }}
@@ -635,11 +635,11 @@ jobs:
635635 id-token : write
636636 steps :
637637 - name : Check out repository
638- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
638+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
639639 with :
640640 ref : ${{ needs.prepare-release.outputs.commit_sha }}
641641 - name : Set up Node
642- uses : actions/setup-node@v4
642+ uses : actions/setup-node@v6
643643 with :
644644 node-version : " 22"
645645 registry-url : https://registry.npmjs.org
@@ -676,21 +676,21 @@ jobs:
676676 contents : write
677677 steps :
678678 - name : Check out prepared release commit
679- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
679+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
680680 with :
681681 ref : ${{ needs.prepare-release.outputs.commit_sha }}
682682 - name : Download Python distributions
683- uses : actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093
683+ uses : actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
684684 with :
685685 name : python-dist-${{ github.sha }}
686686 path : dist
687687 - name : Download release assets
688- uses : actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093
688+ uses : actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
689689 with :
690690 name : release-assets-${{ github.sha }}
691691 path : .artifacts/release-assets
692692 - name : Attach Python package and release evidence assets
693- uses : softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe
693+ uses : softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda
694694 with :
695695 tag_name : ${{ github.event_name == 'workflow_dispatch' && needs.prepare-release.outputs.python_release_tag || github.ref_name }}
696696 name : ${{ github.event_name == 'workflow_dispatch' && needs.prepare-release.outputs.python_release_tag || github.ref_name }}
0 commit comments