Skip to content

Commit

Permalink
ENH: Fix macOS ARM workflow actions warnings linked to Node.js
Browse files Browse the repository at this point in the history
Fix macOS ARM workflow actions warnings linked to `Node.js`: bump
`actions/setup-python` to v5.

Fixes:
```
Node.js 16 actions are deprecated.
Please update the following actions to use Node.js 20:
actions/setup-python@v4.
For more information see:
https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
```

raised for example in:
https://github.com/InsightSoftwareConsortium/ITK/actions/runs/8676305102
  • Loading branch information
jhlegarreta authored and hjmjohnson committed Apr 14, 2024
1 parent 781cf0d commit 65306d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/macos-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
clean: true

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.11'

Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
clean: true

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.11'

Expand Down

0 comments on commit 65306d5

Please sign in to comment.