Skip to content

Commit 59b81ef

Browse files
committed
Update workflows
1 parent d3e97d2 commit 59b81ef

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-10
lines changed

.github/workflows/auto_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: [ubuntu-latest, windows-latest]
17-
python-version: ["3.14-dev", "3.13", "3.12", "3.11", "3.10"]
17+
python-version: ["3.14", "3.13", "3.12", "3.11", "3.10"]
1818

1919
steps:
2020
- uses: actions/checkout@v5

.github/workflows/build_zipapp.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v5
15+
with:
16+
fetch-depth: 0
1517
- name: Set up Python
1618
uses: actions/setup-python@v6
1719
with:
@@ -24,7 +26,7 @@ jobs:
2426
run: |
2527
python -m ducktools.env rebuild_env --zipapp
2628
- name: Store the built zipapp
27-
uses: actions/upload-artifact@v4
29+
uses: actions/upload-artifact@v5
2830
with:
2931
name: ducktools-zipapp
3032
path: dist/
@@ -43,12 +45,12 @@ jobs:
4345

4446
steps:
4547
- name: Download the zipapp
46-
uses: actions/download-artifact@v5
48+
uses: actions/download-artifact@v6
4749
with:
4850
name: ducktools-zipapp
4951
path: dist/
5052
- name: Sign the zipapp with Sigstore
51-
uses: sigstore/gh-action-sigstore-python@v3.0.1
53+
uses: sigstore/gh-action-sigstore-python@v3.1.0
5254
with:
5355
release-signing-artifacts: false
5456
inputs: >-

.github/workflows/publish_to_pypi.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ 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:
@@ -24,7 +26,7 @@ jobs:
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/
@@ -43,7 +45,7 @@ jobs:
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: >-

.github/workflows/publish_to_testpypi.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v5
15+
with:
16+
fetch-depth: 0
1517
- name: Set up Python
1618
uses: actions/setup-python@v6
1719
with:
@@ -25,7 +27,7 @@ jobs:
2527
- name: Build a binary wheel and a source tarball
2628
run: python3 -m build
2729
- name: Store the distribution packages
28-
uses: actions/upload-artifact@v4
30+
uses: actions/upload-artifact@v5
2931
with:
3032
name: python-package-distributions
3133
path: dist/
@@ -45,7 +47,7 @@ jobs:
4547

4648
steps:
4749
- name: Download all the dists
48-
uses: actions/download-artifact@v5
50+
uses: actions/download-artifact@v6
4951
with:
5052
name: python-package-distributions
5153
path: dist/

0 commit comments

Comments
 (0)