Skip to content

Commit a7f818b

Browse files
authored
Merge pull request #193 from jhlegarreta/FixGitHubActionsNodejsWarning
ENH: Fix workflow actions warnings linked to `Node.js`
2 parents 10275b3 + 1cadef0 commit a7f818b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 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

@@ -57,13 +57,13 @@ jobs:
5757
ninja
5858
5959
- name: Publish ITK Software Guide Book 1 artifact
60-
uses: actions/upload-artifact@v1
60+
uses: actions/upload-artifact@v3
6161
with:
6262
name: ITKSoftwareGuide-Book1.pdf
6363
path: build/ITKSoftwareGuide-build/SoftwareGuide/Latex/ITKSoftwareGuide-Book1.pdf
6464

6565
- name: Publish ITK Software Guide Book 2 artifact
66-
uses: actions/upload-artifact@v1
66+
uses: actions/upload-artifact@v3
6767
with:
6868
name: ITKSoftwareGuide-Book2.pdf
6969
path: build/ITKSoftwareGuide-build/SoftwareGuide/Latex/ITKSoftwareGuide-Book2.pdf

0 commit comments

Comments
 (0)