Skip to content

Commit

Permalink
Merge pull request #164 from jhlegarreta/FixGitHubActionsNodejsWarning
Browse files Browse the repository at this point in the history
ENH: Fix `Node.js` warnings linked to GitHub actions
  • Loading branch information
thewtex committed Jul 8, 2024
2 parents 4207037 + 9d8e786 commit b10b18c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
python-version: ["38", "39", "310", "311"]

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

- name: 'Free up disk space'
run: |
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
done
- name: Publish Python package as GitHub Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: LinuxWheel3${{ matrix.python-version }}
path: Evaluated/ITKModuleTemplate/dist
Expand Down Expand Up @@ -251,7 +251,7 @@ jobs:
../../macpython-download-cache-and-build-module-wheels.sh
- name: Publish Python package as GitHub Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: MacOSWheel3${{ matrix.python-version }}
path: Evaluated/ITKModuleTemplate/dist
Expand All @@ -264,15 +264,15 @@ jobs:
python-version-minor: ["8", "9", "10", "11"]

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

- name: 'Install Python'
run: |
$pythonArch = "64"
$pythonVersion = "3.${{ matrix.python-version-minor }}"
iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/scikit-build/scikit-ci-addons/master/windows/install-python.ps1'))
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'

Expand Down Expand Up @@ -322,7 +322,7 @@ jobs:
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"
- name: Publish Python package as GitHub Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: WindowsWheel3.${{ matrix.python-version-minor }}
path: Evaluated/ITKModuleTemplate/dist
2 changes: 1 addition & 1 deletion .github/workflows/clang-format-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ jobs:
runs-on: ubuntu-latest

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

- uses: InsightSoftwareConsortium/ITKClangFormatLinterAction@master
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ jobs:
runs-on: ubuntu-latest

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

- uses: InsightSoftwareConsortium/ITKClangFormatLinterAction@master

0 comments on commit b10b18c

Please sign in to comment.