File tree Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ jobs:
1313 platform : [ubuntu-latest, macos-latest, windows-latest]
1414 runs-on : ${{ matrix.platform }}
1515 steps :
16- - uses : actions/checkout@v3
16+ - uses : actions/checkout@v4
1717 with :
1818 fetch-depth : 0
1919 - name : Set up Python ${{ matrix.python-version }}
20- uses : actions/setup-python@v4
20+ uses : actions/setup-python@v5
2121 with :
2222 python-version : ${{ matrix.python-version }}
2323 allow-prereleases : true
Original file line number Diff line number Diff line change 1010 steps :
1111 - uses : actions/checkout@v4
1212 - name : Set up Python
13- uses : actions/setup-python@v4
13+ uses : actions/setup-python@v5
1414 with :
1515 python-version : " 3.x"
1616 - name : Install pypa/build
2222 - name : Build a binary wheel and a source tarball
2323 run : python3 -m build
2424 - name : Store the distribution packages
25- uses : actions/upload-artifact@v3
25+ uses : actions/upload-artifact@v4
2626 with :
2727 name : python-package-distributions
2828 path : dist/
4242
4343 steps :
4444 - name : Download all the dists
45- uses : actions/download-artifact@v3
45+ uses : actions/download-artifact@v4
4646 with :
4747 name : python-package-distributions
4848 path : dist/
@@ -63,12 +63,12 @@ jobs:
6363
6464 steps :
6565 - name : Download all the dists
66- uses : actions/download-artifact@v3
66+ uses : actions/download-artifact@v4
6767 with :
6868 name : python-package-distributions
6969 path : dist/
7070 - name : Sign the dists with Sigstore
71- uses : sigstore/gh-action-sigstore-python@v2.1.1
71+ uses : sigstore/gh-action-sigstore-python@v3.0.0
7272 with :
7373 inputs : >-
7474 ./dist/*.tar.gz
8282 run : >-
8383 gh release upload
8484 '${{ github.ref_name }}' dist/**
85- --repo '${{ github.repository }}'
85+ --repo '${{ github.repository }}'
Original file line number Diff line number Diff line change 1+ Updated all github actions.
You can’t perform that action at this time.
0 commit comments