Skip to content

Commit e82cfd0

Browse files
authored
Merge pull request #147 from jhlegarreta/BumpGitHubActionsVersions
ENH: Fix workflow actions warnings linked to `Node.js`
2 parents 2c1a717 + 0a81282 commit e82cfd0

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- uses: actions/checkout@v3
3333

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

@@ -43,7 +43,7 @@ jobs:
4343
python -m pip install cookiecutter
4444
4545
- name: Get specific version of CMake, Ninja
46-
uses: lukka/get-cmake@v3.22.2
46+
uses: lukka/get-cmake@v3.24.2
4747

4848
- name: Download ITK
4949
run: |
@@ -164,12 +164,12 @@ jobs:
164164
unzstd --version
165165
166166
- name: Set up Python 3.8
167-
uses: actions/setup-python@v3
167+
uses: actions/setup-python@v4
168168
with:
169169
python-version: "3.8"
170170

171171
- name: Get specific version of CMake, Ninja
172-
uses: lukka/get-cmake@v3.22.2
172+
uses: lukka/get-cmake@v3.24.2
173173

174174
- name: Evaluate template
175175
shell: bash
@@ -196,7 +196,7 @@ jobs:
196196
done
197197
198198
- name: Publish Python package as GitHub Artifact
199-
uses: actions/upload-artifact@v1
199+
uses: actions/upload-artifact@v3
200200
with:
201201
name: LinuxWheel${{ matrix.python-version }}
202202
path: Evaluated/ITKModuleTemplate/dist
@@ -214,15 +214,15 @@ jobs:
214214
sudo xcode-select -s "/Applications/Xcode_13.2.1.app"
215215
216216
- name: Get specific version of CMake, Ninja
217-
uses: lukka/get-cmake@v3.22.2
217+
uses: lukka/get-cmake@v3.24.2
218218

219219
- name: 'Fetch build script'
220220
run: |
221221
curl -L https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKPythonPackage/${{ env.itk-python-package-tag }}/scripts/macpython-download-cache-and-build-module-wheels.sh -O
222222
chmod u+x macpython-download-cache-and-build-module-wheels.sh
223223
224224
- name: Set up Python 3.8
225-
uses: actions/setup-python@v3
225+
uses: actions/setup-python@v4
226226
with:
227227
python-version: "3.8"
228228

@@ -242,7 +242,7 @@ jobs:
242242
../../macpython-download-cache-and-build-module-wheels.sh
243243
244244
- name: Publish Python package as GitHub Artifact
245-
uses: actions/upload-artifact@v1
245+
uses: actions/upload-artifact@v3
246246
with:
247247
name: MacOSWheels
248248
path: Evaluated/ITKModuleTemplate/dist
@@ -263,15 +263,15 @@ jobs:
263263
$pythonVersion = "3.${{ matrix.python-version-minor }}"
264264
iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/scikit-build/scikit-ci-addons/master/windows/install-python.ps1'))
265265
266-
- uses: actions/setup-python@v3
266+
- uses: actions/setup-python@v4
267267
with:
268268
python-version: '3.x'
269269

270270
- name: Get specific version of CMake, Ninja
271-
uses: lukka/get-cmake@v3.22.2
271+
uses: lukka/get-cmake@v3.24.2
272272

273273
- name: Set up Python 3.8
274-
uses: actions/setup-python@v3
274+
uses: actions/setup-python@v4
275275
with:
276276
python-version: "3.8"
277277

@@ -313,7 +313,7 @@ jobs:
313313
C:\Python3${{ matrix.python-version-minor }}-x64\python.exe C:\P\IPP\scripts\windows_build_module_wheels.py --py-envs "3${{ matrix.python-version-minor }}-x64"
314314
315315
- name: Publish Python package as GitHub Artifact
316-
uses: actions/upload-artifact@v1
316+
uses: actions/upload-artifact@v3
317317
with:
318318
name: WindowWheel3.${{ matrix.python-version-minor }}
319319
path: Evaluated/ITKModuleTemplate/dist

0 commit comments

Comments
 (0)