Skip to content
This repository was archived by the owner on Nov 8, 2024. It is now read-only.

Commit 9e8019c

Browse files
Upgrade to latest github packages to fix publish command. (#41)
1 parent b5b8a9d commit 9e8019c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v4
1616
- name: Set up Python
17-
uses: actions/setup-python@v4
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: "3.x"
2020
- name: Install pypa/build
@@ -26,7 +26,7 @@ jobs:
2626
- name: Build a binary wheel and a source tarball
2727
run: python3 -m build
2828
- name: Store the distribution packages
29-
uses: actions/upload-artifact@v3
29+
uses: actions/upload-artifact@v4
3030
with:
3131
name: python-package-distributions
3232
path: dist/*
@@ -46,7 +46,7 @@ jobs:
4646

4747
steps:
4848
- name: Download all the dists
49-
uses: actions/download-artifact@v3
49+
uses: actions/download-artifact@v4
5050
with:
5151
name: python-package-distributions
5252
path: dist/
@@ -67,12 +67,12 @@ jobs:
6767

6868
steps:
6969
- name: Download all the dists
70-
uses: actions/download-artifact@v3
70+
uses: actions/download-artifact@v4
7171
with:
7272
name: python-package-distributions
7373
path: dist/
7474
- name: Sign the dists with Sigstore
75-
uses: sigstore/gh-action-sigstore-python@v1.2.3
75+
uses: sigstore/gh-action-sigstore-python@v2.1.1
7676
with:
7777
inputs: >-
7878
./dist/*.tar.gz

0 commit comments

Comments
 (0)