Skip to content

Commit 7177b8d

Browse files
committed
Merge branch 'dev' into feat-ignore-index-support
Signed-off-by: Rusheel Sharma <rusheelhere@gmail.com>
2 parents 9c1fa24 + 342bd7a commit 7177b8d

File tree

204 files changed

+4047
-824
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

204 files changed

+4047
-824
lines changed

.github/workflows/chatops.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: dispatch
13-
uses: peter-evans/slash-command-dispatch@v4.0.0
13+
uses: peter-evans/slash-command-dispatch@v5.0.2
1414
with:
1515
token: ${{ secrets.PR_MAINTAIN }}
1616
reaction-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v6
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/conda.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
steps:
2828
- if: runner.os == 'windows'
2929
name: Config pagefile (Windows only)
30-
uses: al-cheb/configure-pagefile-action@v1.4
30+
uses: al-cheb/configure-pagefile-action@v1.5
3131
with:
3232
minimum-size: 8GB
3333
maximum-size: 16GB
3434
disk-root: "D:"
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v6
3636
- name: Clean up disk space
3737
run: |
3838
find /opt/hostedtoolcache/* -maxdepth 0 ! -name 'Python' -exec rm -rf {} \;

.github/workflows/cron-ngc-bundle.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ jobs:
1717
if: github.repository == 'Project-MONAI/MONAI'
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v6
2121
- name: Set up Python 3.9
22-
uses: actions/setup-python@v5
22+
uses: actions/setup-python@v6
2323
with:
2424
python-version: '3.9'
2525
- name: cache weekly timestamp
2626
id: pip-cache
2727
run: echo "datew=$(date '+%Y-%V')" >> $GITHUB_OUTPUT
2828
- name: cache for pip
29-
uses: actions/cache@v4
29+
uses: actions/cache@v5
3030
id: cache
3131
with:
3232
path: ~/.cache/pip

.github/workflows/cron.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
options: "--gpus all"
3333
runs-on: [self-hosted, linux, x64, common]
3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v6
3636
- name: apt install
3737
run: |
3838
apt-get update
@@ -82,7 +82,7 @@ jobs:
8282
options: "--gpus all"
8383
runs-on: [self-hosted, linux, x64, integration]
8484
steps:
85-
- uses: actions/checkout@v4
85+
- uses: actions/checkout@v6
8686
- name: Install APT dependencies
8787
run: |
8888
apt-get update
@@ -131,7 +131,7 @@ jobs:
131131
options: "--gpus all"
132132
runs-on: [self-hosted, linux, x64, integration]
133133
steps:
134-
- uses: actions/checkout@v4
134+
- uses: actions/checkout@v6
135135
with:
136136
fetch-depth: 0
137137
- name: Install the dependencies
@@ -233,7 +233,7 @@ jobs:
233233
options: "--gpus all --ipc=host"
234234
runs-on: [self-hosted, linux, x64, integration]
235235
steps:
236-
- uses: actions/checkout@v4
236+
- uses: actions/checkout@v6
237237
- name: Install MONAI
238238
id: monai-install
239239
run: |

.github/workflows/docker.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
if: ${{ false }} # disable docker build job project-monai/monai#7450
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v6
2525
# full history so that we can git describe
2626
with:
2727
ref: dev
2828
fetch-depth: 0
2929
- name: Set up Python 3.9
30-
uses: actions/setup-python@v5
30+
uses: actions/setup-python@v6
3131
with:
3232
python-version: '3.9'
3333
- shell: bash
@@ -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@v6
4141
with:
4242
name: _version.py
4343
path: build/lib/monai/_version.py
@@ -53,11 +53,11 @@ jobs:
5353
needs: versioning_dev
5454
runs-on: ubuntu-latest
5555
steps:
56-
- uses: actions/checkout@v4
56+
- uses: actions/checkout@v6
5757
with:
5858
ref: dev
5959
- name: Download version
60-
uses: actions/download-artifact@v4
60+
uses: actions/download-artifact@v6
6161
with:
6262
name: _version.py
6363
- name: docker_build

.github/workflows/integration.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: [self-hosted, linux, x64, command]
1414
steps:
1515
# checkout the pull request branch
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
with:
1818
token: ${{ secrets.PR_MAINTAIN }}
1919
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
@@ -22,7 +22,7 @@ jobs:
2222
id: pip-cache
2323
run: echo "datew=$(date '+%Y-%V')" >> $GITHUB_OUTPUT
2424
- name: cache for pip
25-
uses: actions/cache@v4
25+
uses: actions/cache@v5
2626
id: cache
2727
with:
2828
path: |
@@ -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 }}
@@ -89,7 +89,7 @@ jobs:
8989
runs-on: [self-hosted, linux, x64, command1]
9090
steps:
9191
# checkout the pull request branch
92-
- uses: actions/checkout@v4
92+
- uses: actions/checkout@v6
9393
with:
9494
token: ${{ secrets.PR_MAINTAIN }}
9595
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
@@ -98,7 +98,7 @@ jobs:
9898
id: pip-cache
9999
run: echo "datew=$(date '+%Y-%V')" >> $GITHUB_OUTPUT
100100
- name: cache for pip
101-
uses: actions/cache@v4
101+
uses: actions/cache@v5
102102
id: cache
103103
with:
104104
path: |
@@ -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-gpu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
options: --gpus all --env NVIDIA_DISABLE_REQUIRE=true # workaround for unsatisfied condition: cuda>=11.6
4545
runs-on: [self-hosted, linux, x64, common]
4646
steps:
47-
- uses: actions/checkout@v4
47+
- uses: actions/checkout@v6
4848
- name: apt install
4949
if: github.event.pull_request.merged != true
5050
run: |

.github/workflows/pythonapp-min.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
os: [windows-latest, macOS-latest, ubuntu-latest]
3131
timeout-minutes: 40
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v6
3434
- name: Set up Python 3.9
35-
uses: actions/setup-python@v5
35+
uses: actions/setup-python@v6
3636
with:
3737
python-version: '3.9'
3838
- name: Prepare pip wheel
@@ -46,7 +46,7 @@ jobs:
4646
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
4747
shell: bash
4848
- name: cache for pip
49-
uses: actions/cache@v4
49+
uses: actions/cache@v5
5050
id: cache
5151
with:
5252
path: ${{ steps.pip-cache.outputs.dir }}
@@ -79,23 +79,24 @@ jobs:
7979
python-version: ['3.9', '3.10', '3.11', '3.12']
8080
timeout-minutes: 40
8181
steps:
82-
- uses: actions/checkout@v4
82+
- uses: actions/checkout@v6
8383
- name: Set up Python ${{ matrix.python-version }}
84-
uses: actions/setup-python@v5
84+
uses: actions/setup-python@v6
8585
with:
8686
python-version: ${{ matrix.python-version }}
8787
- name: Prepare pip wheel
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: |
9495
echo "datew=$(date '+%Y-%V')" >> $GITHUB_OUTPUT
9596
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
9697
shell: bash
9798
- name: cache for pip
98-
uses: actions/cache@v4
99+
uses: actions/cache@v5
99100
id: cache
100101
with:
101102
path: ${{ steps.pip-cache.outputs.dir }}
@@ -127,23 +128,24 @@ jobs:
127128
pytorch-version: ['2.5.1', '2.6.0', '2.7.1', '2.8.0']
128129
timeout-minutes: 40
129130
steps:
130-
- uses: actions/checkout@v4
131+
- uses: actions/checkout@v6
131132
- name: Set up Python 3.9
132-
uses: actions/setup-python@v5
133+
uses: actions/setup-python@v6
133134
with:
134135
python-version: '3.9'
135136
- name: Prepare pip wheel
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: |
142144
echo "datew=$(date '+%Y-%V')" >> $GITHUB_OUTPUT
143145
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
144146
shell: bash
145147
- name: cache for pip
146-
uses: actions/cache@v4
148+
uses: actions/cache@v5
147149
id: cache
148150
with:
149151
path: ${{ steps.pip-cache.outputs.dir }}

0 commit comments

Comments
 (0)