Skip to content

Commit

Permalink
ENH: Fix workflow actions warnings linked to Node.js
Browse files Browse the repository at this point in the history
Fix workflow actions warnings linked to `Node.js`: bump miscellaneous
GitHub actions versions in workflows.

Fixes:
```
Node.js 12 actions are deprecated. For more information see:
https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/.
Please update the following actions to use Node.js 16:
actions/checkout@v2, actions/setup-python@v1
```

and
```
The `set-output` command is deprecated and will be disabled soon.
Please upgrade to using Environment Files.
For more information see:
https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
```

raised for example in:
https://github.com/InsightSoftwareConsortium/ITKSoftwareGuide/actions/runs/3884893720
  • Loading branch information
jhlegarreta committed Jan 12, 2023
1 parent 10275b3 commit 1999983
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -12,10 +12,10 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python 3.9
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: 3.9

Expand Down

0 comments on commit 1999983

Please sign in to comment.