Skip to content

Commit f8f72ff

Browse files
authored
Update GitHub actions to their latest versions (#11)
1 parent fb59825 commit f8f72ff

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
runs-on: ubuntu-latest
2323

2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
- name: Set up Python
27-
uses: actions/setup-python@v5
27+
uses: actions/setup-python@v6
2828
with:
2929
python-version: "3.x"
3030
- name: Install pypa/build
@@ -51,12 +51,12 @@ jobs:
5151
id-token: write # IMPORTANT: mandatory for trusted publishing
5252
steps:
5353
- name: Download all the dists
54-
uses: actions/download-artifact@v4
54+
uses: actions/download-artifact@v5
5555
with:
5656
name: python-package-distributions
5757
path: dist/
5858
- name: Publish distribution 📦 to PyPI
59-
uses: pypa/gh-action-pypi-publish@release/v1.12
59+
uses: pypa/gh-action-pypi-publish@release/v1.13
6060

6161
github-release:
6262
name: >-
@@ -72,12 +72,12 @@ jobs:
7272

7373
steps:
7474
- name: Download all the dists
75-
uses: actions/download-artifact@v4
75+
uses: actions/download-artifact@v5
7676
with:
7777
name: python-package-distributions
7878
path: dist/
7979
- name: Sign the dists with Sigstore
80-
uses: sigstore/[email protected].0
80+
uses: sigstore/[email protected].1
8181
with:
8282
inputs: >-
8383
./dist/*.tar.gz

.github/workflows/test_release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ jobs:
6060
runs-on: ubuntu-latest
6161

6262
steps:
63-
- uses: actions/checkout@v4
63+
- uses: actions/checkout@v5
6464
- name: Set up Python
65-
uses: actions/setup-python@v5
65+
uses: actions/setup-python@v6
6666
with:
6767
python-version: "3.x"
6868
- name: Install pypa/build
@@ -93,12 +93,12 @@ jobs:
9393

9494
steps:
9595
- name: Download all the dists
96-
uses: actions/download-artifact@v4
96+
uses: actions/download-artifact@v5
9797
with:
9898
name: python-package-distributions
9999
path: dist/
100100
- name: Publish distribution 📦 to TestPyPI
101-
uses: pypa/gh-action-pypi-publish@release/v1.12
101+
uses: pypa/gh-action-pypi-publish@release/v1.13
102102
with:
103103
repository-url: https://test.pypi.org/legacy/
104104
skip-existing: true

0 commit comments

Comments
 (0)