Skip to content

Commit ec7d1a9

Browse files
committed
updated actions to use node.js 24
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/setup-python@v5: all updated to latest v6
1 parent 8809f30 commit ec7d1a9

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/deploy.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424
version: ${{ steps.extract-version.outputs.version }}
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v6
2828
with:
2929
fetch-depth: 0
3030
fetch-tags: true
3131

3232
- name: Set up Python
33-
uses: actions/setup-python@v5
33+
uses: actions/setup-python@v6
3434
with:
3535
python-version: "3.14"
3636

@@ -72,13 +72,13 @@ jobs:
7272
needs: build
7373
steps:
7474
- name: Checkout repository for test files
75-
uses: actions/checkout@v4
75+
uses: actions/checkout@v6
7676
with:
7777
fetch-depth: 0
7878
fetch-tags: true
7979

8080
- name: Set up Python
81-
uses: actions/setup-python@v5
81+
uses: actions/setup-python@v6
8282
with:
8383
python-version: "3.14"
8484

@@ -161,12 +161,12 @@ jobs:
161161
(github.event_name == 'push' && startsWith(github.ref, 'refs/tags/'))
162162
steps:
163163
- name: Set up Python
164-
uses: actions/setup-python@v5
164+
uses: actions/setup-python@v6
165165
with:
166166
python-version: "3.14"
167167

168168
- name: Checkout repository for actions
169-
uses: actions/checkout@v4
169+
uses: actions/checkout@v6
170170

171171
- name: Wait for version to be available on TestPyPI
172172
uses: ./.github/actions/wait-for-pypi-version
@@ -203,12 +203,12 @@ jobs:
203203
(github.event_name == 'release' && github.event.action == 'published')
204204
steps:
205205
- name: Set up Python
206-
uses: actions/setup-python@v5
206+
uses: actions/setup-python@v6
207207
with:
208208
python-version: "3.14"
209209

210210
- name: Checkout repository for actions
211-
uses: actions/checkout@v4
211+
uses: actions/checkout@v6
212212

213213
- name: Wait for version to be available on PyPI
214214
uses: ./.github/actions/wait-for-pypi-version

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1919

2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@v6
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626

0 commit comments

Comments
 (0)