Skip to content

Commit 3df5ef3

Browse files
committed
ENH: Bump checkout and setup-python GitHub actions versions
Bump checkout and setup-python GitHub actions versions. Fixes: ``` The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-python@v4, lukka/get-cmake@v3.24.2. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/ ``` raised for example at: https://github.com/InsightSoftwareConsortium/ITKSphinxExamples/actions/runs/11685104025/job/32537786966
1 parent e7af663 commit 3df5ef3

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/build-test-publish.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
cmake-build-type: "MinSizeRel"
2828

2929
steps:
30-
- uses: actions/checkout@v3
30+
- uses: actions/checkout@v4
3131
with:
3232
path: Ex
3333

3434
- name: Set up Python 3.9
35-
uses: actions/setup-python@v4
35+
uses: actions/setup-python@v5
3636
with:
3737
python-version: 3.9
3838

@@ -151,12 +151,12 @@ jobs:
151151
cmake-build-type: "MinSizeRel"
152152

153153
steps:
154-
- uses: actions/checkout@v3
154+
- uses: actions/checkout@v4
155155
with:
156156
path: Ex
157157

158158
- name: Set up Python 3.9
159-
uses: actions/setup-python@v4
159+
uses: actions/setup-python@v5
160160
with:
161161
python-version: 3.9
162162

@@ -237,9 +237,9 @@ jobs:
237237
os: [ubuntu-22.04, windows-2022, macos-13]
238238

239239
steps:
240-
- uses: actions/checkout@v3
240+
- uses: actions/checkout@v4
241241
- name: Set up Python 3.9
242-
uses: actions/setup-python@v4
242+
uses: actions/setup-python@v5
243243
with:
244244
python-version: 3.9
245245

@@ -271,13 +271,13 @@ jobs:
271271
cmake-build-type: "Release"
272272

273273
steps:
274-
- uses: actions/checkout@v3
274+
- uses: actions/checkout@v4
275275
with:
276276
path: Ex
277277
submodules: recursive
278278

279279
- name: Set up Python 3.9
280-
uses: actions/setup-python@v4
280+
uses: actions/setup-python@v5
281281
with:
282282
python-version: 3.9
283283

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88

99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
with:
1212
# Full git history is needed to get a proper
1313
# list of changed files within `super-linter`
@@ -17,7 +17,7 @@ jobs:
1717
uses: InsightSoftwareConsortium/ITKClangFormatLinterAction@master
1818

1919
- name: Set up Python
20-
uses: actions/setup-python@v4
20+
uses: actions/setup-python@v5
2121
with:
2222
python-version: 3.9
2323

0 commit comments

Comments
 (0)