Skip to content

Commit 0b4ddc8

Browse files
DimitriPapadopoulosadrienverge
authored andcommitted
1 parent 866f805 commit 0b4ddc8

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/publish.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99
name: Build distribution package
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
with:
1414
persist-credentials: false
1515
- name: Fetch tags
1616
if: github.ref_type != 'tag'
1717
run: git fetch --prune --unshallow --tags
1818
- name: Set up Python
19-
uses: actions/setup-python@v5
19+
uses: actions/setup-python@v6
2020
with:
2121
python-version: "3.x"
2222
- name: Install pypa/build
@@ -50,7 +50,7 @@ jobs:
5050
id-token: write
5151
steps:
5252
- name: Download all the dists
53-
uses: actions/download-artifact@v4
53+
uses: actions/download-artifact@v5
5454
with:
5555
name: python-package-distributions
5656
path: dist/
@@ -71,7 +71,7 @@ jobs:
7171
id-token: write
7272
steps:
7373
- name: Download all the dists
74-
uses: actions/download-artifact@v4
74+
uses: actions/download-artifact@v5
7575
with:
7676
name: python-package-distributions
7777
path: dist/
@@ -87,7 +87,7 @@ jobs:
8787
id-token: write
8888
steps:
8989
- name: Download all the dists
90-
uses: actions/download-artifact@v4
90+
uses: actions/download-artifact@v5
9191
with:
9292
name: python-package-distributions
9393
path: dist/

.github/workflows/tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
- name: Set up Python
22-
uses: actions/setup-python@v5
22+
uses: actions/setup-python@v6
2323
with:
2424
python-version: "3.x"
2525
- run:
@@ -51,9 +51,9 @@ jobs:
5151
- '3.14'
5252
steps:
5353
- name: Checkout
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v5
5555
- name: Set up Python ${{ matrix.python-version }}
56-
uses: actions/setup-python@v5
56+
uses: actions/setup-python@v6
5757
with:
5858
python-version: ${{ matrix.python-version }}
5959
allow-prereleases: true # needed for 3.14

0 commit comments

Comments
 (0)