Skip to content

Commit 1999983

Browse files
committed
ENH: Fix workflow actions warnings linked to Node.js
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
1 parent 10275b3 commit 1999983

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-20.04
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616

1717
- name: Set up Python 3.9
18-
uses: actions/setup-python@v1
18+
uses: actions/setup-python@v4
1919
with:
2020
python-version: 3.9
2121

0 commit comments

Comments
 (0)