Skip to content

Commit 23f641f

Browse files
committed
COMP: Add Dependabot for actions and raise Superbuild Python floor
Add a Dependabot configuration that proposes grouped weekly updates for the GitHub Actions used in CI, so action versions stay current without manual tracking (several were emitting Node-20 deprecation warnings). Raise the Superbuild minimum Python from the end-of-life 3.7 to 3.11 to match the version used throughout the CI matrix and supported by current ITK.
1 parent abbaf33 commit 23f641f

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
groups:
8+
actions:
9+
patterns:
10+
- "*"

Superbuild/External-Python.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set(MIN_PYTHON_VERSION 3.7)
1+
set(MIN_PYTHON_VERSION 3.11)
22
find_package(Python3 ${MIN_PYTHON_VERSION} COMPONENTS Interpreter REQUIRED)
33

44
set(_itk_venv "${CMAKE_CURRENT_BINARY_DIR}/itkpython")

0 commit comments

Comments
 (0)