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:
13
13
platform : [ubuntu-latest, macos-latest, windows-latest]
14
14
runs-on : ${{ matrix.platform }}
15
15
steps :
16
- - uses : actions/checkout@v3
16
+ - uses : actions/checkout@v4
17
17
with :
18
18
fetch-depth : 0
19
19
- name : Set up Python ${{ matrix.python-version }}
20
- uses : actions/setup-python@v4
20
+ uses : actions/setup-python@v5
21
21
with :
22
22
python-version : ${{ matrix.python-version }}
23
23
allow-prereleases : true
Original file line number Diff line number Diff line change 10
10
steps :
11
11
- uses : actions/checkout@v4
12
12
- name : Set up Python
13
- uses : actions/setup-python@v4
13
+ uses : actions/setup-python@v5
14
14
with :
15
15
python-version : " 3.x"
16
16
- name : Install pypa/build
22
22
- name : Build a binary wheel and a source tarball
23
23
run : python3 -m build
24
24
- name : Store the distribution packages
25
- uses : actions/upload-artifact@v3
25
+ uses : actions/upload-artifact@v4
26
26
with :
27
27
name : python-package-distributions
28
28
path : dist/
42
42
43
43
steps :
44
44
- name : Download all the dists
45
- uses : actions/download-artifact@v3
45
+ uses : actions/download-artifact@v4
46
46
with :
47
47
name : python-package-distributions
48
48
path : dist/
@@ -63,12 +63,12 @@ jobs:
63
63
64
64
steps :
65
65
- name : Download all the dists
66
- uses : actions/download-artifact@v3
66
+ uses : actions/download-artifact@v4
67
67
with :
68
68
name : python-package-distributions
69
69
path : dist/
70
70
- 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
72
72
with :
73
73
inputs : >-
74
74
./dist/*.tar.gz
82
82
run : >-
83
83
gh release upload
84
84
'${{ 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