File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,10 +11,12 @@ jobs:
1111
1212 steps :
1313 - uses : actions/checkout@v5
14+ with :
15+ fetch-depth : 0
1416 - name : Set up Python
1517 uses : actions/setup-python@v6
1618 with :
17- python-version : " 3.12 "
19+ python-version : " 3.13 "
1820 - name : Install the module
1921 run : |
2022 python -m pip install --upgrade pip
2325 run : |
2426 python application/setup.py build
2527 - name : Store the built application
26- uses : actions/upload-artifact@v4
28+ uses : actions/upload-artifact@v5
2729 with :
2830 name : splitguides-app
2931 path : build/SplitGuides_v*.zip
@@ -40,12 +42,12 @@ jobs:
4042 id-token : write # IMPORTANT: mandatory for sigstore
4143 steps :
4244 - name : Download the zipapp
43- uses : actions/download-artifact@v5
45+ uses : actions/download-artifact@v6
4446 with :
4547 name : splitguides-app
4648 path : dist/
4749 - name : Sign the zipapp with Sigstore
48- uses : sigstore/gh-action-sigstore-python@v3.0.1
50+ uses : sigstore/gh-action-sigstore-python@v3.1.0
4951 with :
5052 release-signing-artifacts : false
5153 inputs : >-
Original file line number Diff line number Diff line change 1111
1212 steps :
1313 - uses : actions/checkout@v5
14+ with :
15+ fetch-depth : 0
1416 - name : Set up Python
1517 uses : actions/setup-python@v6
1618 with :
2426 - name : Build a binary wheel and a source tarball
2527 run : python3 -m build
2628 - name : Store the distribution packages
27- uses : actions/upload-artifact@v4
29+ uses : actions/upload-artifact@v5
2830 with :
2931 name : python-package-distributions
3032 path : dist/
4345
4446 steps :
4547 - name : Download all the dists
46- uses : actions/download-artifact@v5
48+ uses : actions/download-artifact@v6
4749 with :
4850 name : python-package-distributions
4951 path : dist/
@@ -64,12 +66,12 @@ jobs:
6466
6567 steps :
6668 - name : Download all the dists
67- uses : actions/download-artifact@v5
69+ uses : actions/download-artifact@v6
6870 with :
6971 name : python-package-distributions
7072 path : dist/
7173 - name : Sign the dists with Sigstore
72- uses : sigstore/gh-action-sigstore-python@v3.0.1
74+ uses : sigstore/gh-action-sigstore-python@v3.1.0
7375 with :
7476 release-signing-artifacts : false
7577 inputs : >-
Original file line number Diff line number Diff line change 1414
1515 steps :
1616 - uses : actions/checkout@v5
17+ with :
18+ fetch-depth : 0
1719 - name : Set up Python
1820 uses : actions/setup-python@v6
1921 with :
2628 run : >-
2729 python application/setup.py build
2830 - name : Store the built app
29- uses : actions/upload-artifact@v4
31+ uses : actions/upload-artifact@v5
3032 with :
3133 name : splitguides-app-dev
3234 path : build/SplitGuides_v*.zip
@@ -37,22 +39,24 @@ jobs:
3739 runs-on : windows-latest
3840
3941 steps :
40- - uses : actions/checkout@v5
41- - name : Set up Python
42- uses : actions/setup-python@v6
43- with :
44- python-version : " 3.12"
45- - name : Install pypa/build
46- run : >-
47- python3 -m
48- pip install
49- build
50- --user
51- - name : Build a binary wheel and a source tarball
52- run : python3 -m build
53- - name : Store the distribution packages
54- uses : actions/upload-artifact@v4
55- with :
56- name : python-package-distributions
57- path : dist/
58- retention-days : 1
42+ - uses : actions/checkout@v5
43+ with :
44+ fetch-depth : 0
45+ - name : Set up Python
46+ uses : actions/setup-python@v6
47+ with :
48+ python-version : " 3.12"
49+ - name : Install pypa/build
50+ run : >-
51+ python3 -m
52+ pip install
53+ build
54+ --user
55+ - name : Build a binary wheel and a source tarball
56+ run : python3 -m build
57+ - name : Store the distribution packages
58+ uses : actions/upload-artifact@v5
59+ with :
60+ name : python-package-distributions
61+ path : dist/
62+ retention-days : 1
You can’t perform that action at this time.
0 commit comments