Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build-test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
python -m pip install ninja

- name: Get specific version of CMake, Ninja
uses: lukka/get-cmake@latest
uses: lukka/get-cmake@v4.3.3

- name: Download OpenCL-SDK
if: matrix.os == 'macos-15'
Expand Down Expand Up @@ -321,11 +321,11 @@ jobs:
shell: bash

- name: Get specific version of CMake, Ninja
uses: lukka/get-cmake@latest
uses: lukka/get-cmake@v4.3.3

- name: Install CUDA toolkit
if: matrix.backend == 1
uses: Jimver/cuda-toolkit@v0.2.21
uses: Jimver/cuda-toolkit@v0.2.35
with:
method: network
sub-packages: '["nvcc", "cudart", "cudart-dev", "nvrtc", "nvrtc-dev"]'
Expand Down Expand Up @@ -409,7 +409,7 @@ jobs:

steps:
- name: Get specific version of CMake, Ninja
uses: lukka/get-cmake@latest
uses: lukka/get-cmake@v4.3.3

- uses: actions/checkout@v5
with:
Expand Down Expand Up @@ -551,7 +551,7 @@ jobs:
sudo xcode-select -s "${XCODE_APP}/Contents/Developer"

- name: Get specific version of CMake, Ninja
uses: lukka/get-cmake@latest
uses: lukka/get-cmake@v4.3.3

- name: 'Fetch build script'
run: |
Expand Down Expand Up @@ -602,7 +602,7 @@ jobs:

- name: Publish 🐍 Python 📦 package to PyPI
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@v1.14.0
with:
user: __token__
password: ${{ secrets.pypi_password }}
2 changes: 1 addition & 1 deletion .github/workflows/clang-format-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ jobs:
steps:
- uses: actions/checkout@v5

- uses: InsightSoftwareConsortium/ITKClangFormatLinterAction@main
- uses: InsightSoftwareConsortium/ITKClangFormatLinterAction@bab3a0bb26af8a23c7cc2c1d4265834415089eb5 # main
with:
itk-branch: main
2 changes: 1 addition & 1 deletion .github/workflows/test-gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- uses: actions/checkout@v5

- name: Get specific version of CMake, Ninja
uses: lukka/get-cmake@v3.22.2
uses: lukka/get-cmake@v4.3.3

- name: Download OpenCL-ICD-Loader
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
shell: bash

- uses: actions/checkout@v5
- uses: actions/setup-python@v3
- uses: actions/setup-python@v5
with:
python-version: '3.10'

Expand Down
Loading