@@ -30,14 +30,14 @@ jobs:
3030 outputs :
3131 publish : ${{ steps.decide.outputs.publish }}
3232 steps :
33- - uses : actions/checkout@v4
33+ - uses : actions/checkout@v6
3434 if : github.event_name == 'workflow_run'
3535 with :
3636 ref : main
3737
3838 - id : decide
3939 env :
40- GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
40+ GH_TOKEN : ${{ github.token }}
4141 run : |
4242 set -euo pipefail
4343 if [[ "${{ github.event_name }}" != "workflow_run" ]]; then
@@ -64,12 +64,12 @@ jobs:
6464 runs-on : ubuntu-latest
6565
6666 steps :
67- - uses : actions/checkout@v4
67+ - uses : actions/checkout@v6
6868 with :
6969 ref : ${{ github.event_name == 'workflow_run' && 'main' || github.event_name == 'release' && github.ref || 'main' }}
7070
7171 - name : Set up Python
72- uses : actions/setup-python@v5
72+ uses : actions/setup-python@v6
7373 with :
7474 python-version : " 3.x"
7575
8282 run : python -m build
8383
8484 - name : Store distribution packages
85- uses : actions/upload-artifact@v4
85+ uses : actions/upload-artifact@v7
8686 with :
8787 name : python-package-distributions
8888 path : dist/
@@ -102,7 +102,7 @@ jobs:
102102
103103 steps :
104104 - name : Download distribution packages
105- uses : actions/download-artifact@v4
105+ uses : actions/download-artifact@v8
106106 with :
107107 name : python-package-distributions
108108 path : dist/
@@ -122,7 +122,7 @@ jobs:
122122
123123 steps :
124124 - name : Download distribution packages
125- uses : actions/download-artifact@v4
125+ uses : actions/download-artifact@v8
126126 with :
127127 name : python-package-distributions
128128 path : dist/
0 commit comments