Skip to content

Commit 2a0613a

Browse files
Merge branch 'dev' into dev
2 parents ec9b3c3 + d260b78 commit 2a0613a

File tree

6 files changed

+12
-9
lines changed

6 files changed

+12
-9
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v3
45+
uses: github/codeql-action/init@v4
4646
with:
4747
languages: ${{ matrix.language }}
4848
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -72,4 +72,4 @@ jobs:
7272
BUILD_MONAI=1 ./runtests.sh --build
7373
7474
- name: Perform CodeQL Analysis
75-
uses: github/codeql-action/analyze@v3
75+
uses: github/codeql-action/analyze@v4

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
python setup.py build
3838
cat build/lib/monai/_version.py
3939
- name: Upload version
40-
uses: actions/upload-artifact@v4
40+
uses: actions/upload-artifact@v5
4141
with:
4242
name: _version.py
4343
path: build/lib/monai/_version.py
@@ -57,7 +57,7 @@ jobs:
5757
with:
5858
ref: dev
5959
- name: Download version
60-
uses: actions/download-artifact@v5
60+
uses: actions/download-artifact@v6
6161
with:
6262
name: _version.py
6363
- name: docker_build

.github/workflows/integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
run: ./runtests.sh --build --net
7575

7676
- name: Add reaction
77-
uses: peter-evans/create-or-update-comment@v4
77+
uses: peter-evans/create-or-update-comment@v5
7878
with:
7979
token: ${{ secrets.PR_MAINTAIN }}
8080
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}
@@ -154,7 +154,7 @@ jobs:
154154
python -m tests.test_integration_gpu_customization
155155
156156
- name: Add reaction
157-
uses: peter-evans/create-or-update-comment@v4
157+
uses: peter-evans/create-or-update-comment@v5
158158
with:
159159
token: ${{ secrets.PR_MAINTAIN }}
160160
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}

.github/workflows/pythonapp-min.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ jobs:
8888
run: |
8989
which python
9090
python -m pip install --user --upgrade pip setuptools wheel
91+
python -m pip install --user more-itertools>=8.0
9192
- name: cache weekly timestamp
9293
id: pip-cache
9394
run: |
@@ -136,6 +137,7 @@ jobs:
136137
run: |
137138
which python
138139
python -m pip install --user --upgrade pip setuptools wheel
140+
python -m pip install --user more-itertools>=8.0
139141
- name: cache weekly timestamp
140142
id: pip-cache
141143
run: |

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666

6767
- if: matrix.python-version == '3.9' && startsWith(github.ref, 'refs/tags/')
6868
name: Upload artifacts
69-
uses: actions/upload-artifact@v4
69+
uses: actions/upload-artifact@v5
7070
with:
7171
name: dist
7272
path: dist/
@@ -109,7 +109,7 @@ jobs:
109109
python setup.py build
110110
cat build/lib/monai/_version.py
111111
- name: Upload version
112-
uses: actions/upload-artifact@v4
112+
uses: actions/upload-artifact@v5
113113
with:
114114
name: _version.py
115115
path: build/lib/monai/_version.py
@@ -127,7 +127,7 @@ jobs:
127127
steps:
128128
- uses: actions/checkout@v5
129129
- name: Download version
130-
uses: actions/download-artifact@v5
130+
uses: actions/download-artifact@v6
131131
with:
132132
name: _version.py
133133
- name: Set tag

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
requires = [
33
"wheel",
44
"setuptools",
5+
"more-itertools>=8.0",
56
"torch>=2.4.1",
67
"ninja",
78
"packaging"

0 commit comments

Comments
 (0)