From c763360165a925bfe13182cbcf5145ee129e78c8 Mon Sep 17 00:00:00 2001 From: Eric Kerfoot <17726042+ericspod@users.noreply.github.com> Date: Sat, 3 Jan 2026 21:17:22 -0500 Subject: [PATCH 1/5] Consolidating version bumps --- .github/workflows/blossom-ci.yml | 2 +- .github/workflows/chatops.yml | 2 +- .github/workflows/cron-ngc-bundle.yml | 2 +- .github/workflows/docker.yml | 4 ++-- .github/workflows/integration.yml | 4 ++-- .github/workflows/pythonapp-min.yml | 6 +++--- .github/workflows/pythonapp.yml | 8 ++++---- .github/workflows/release.yml | 6 +++--- .github/workflows/setupapp.yml | 6 +++--- .github/workflows/weekly-preview.yml | 2 +- 10 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/blossom-ci.yml b/.github/workflows/blossom-ci.yml index 63ac5536d8..e1b214ddc7 100644 --- a/.github/workflows/blossom-ci.yml +++ b/.github/workflows/blossom-ci.yml @@ -51,7 +51,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: ${{ fromJson(needs.Authorization.outputs.args).repo }} ref: ${{ fromJson(needs.Authorization.outputs.args).ref }} diff --git a/.github/workflows/chatops.yml b/.github/workflows/chatops.yml index d633c483ca..41b7a2e158 100644 --- a/.github/workflows/chatops.yml +++ b/.github/workflows/chatops.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: dispatch - uses: peter-evans/slash-command-dispatch@v5.0.0 + uses: peter-evans/slash-command-dispatch@v5.0.2 with: token: ${{ secrets.PR_MAINTAIN }} reaction-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/cron-ngc-bundle.yml b/.github/workflows/cron-ngc-bundle.yml index 3bdebd5730..766e5372b8 100644 --- a/.github/workflows/cron-ngc-bundle.yml +++ b/.github/workflows/cron-ngc-bundle.yml @@ -26,7 +26,7 @@ jobs: id: pip-cache run: echo "datew=$(date '+%Y-%V')" >> $GITHUB_OUTPUT - name: cache for pip - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache with: path: ~/.cache/pip diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 25cffc09c3..e9549ea012 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -37,7 +37,7 @@ jobs: python setup.py build cat build/lib/monai/_version.py - name: Upload version - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: _version.py path: build/lib/monai/_version.py @@ -57,7 +57,7 @@ jobs: with: ref: dev - name: Download version - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: _version.py - name: docker_build diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 54b5a3f381..56d015e190 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -22,7 +22,7 @@ jobs: id: pip-cache run: echo "datew=$(date '+%Y-%V')" >> $GITHUB_OUTPUT - name: cache for pip - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache with: path: | @@ -98,7 +98,7 @@ jobs: id: pip-cache run: echo "datew=$(date '+%Y-%V')" >> $GITHUB_OUTPUT - name: cache for pip - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache with: path: | diff --git a/.github/workflows/pythonapp-min.yml b/.github/workflows/pythonapp-min.yml index 844d8c844e..84edbd9283 100644 --- a/.github/workflows/pythonapp-min.yml +++ b/.github/workflows/pythonapp-min.yml @@ -46,7 +46,7 @@ jobs: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT shell: bash - name: cache for pip - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache with: path: ${{ steps.pip-cache.outputs.dir }} @@ -96,7 +96,7 @@ jobs: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT shell: bash - name: cache for pip - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache with: path: ${{ steps.pip-cache.outputs.dir }} @@ -145,7 +145,7 @@ jobs: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT shell: bash - name: cache for pip - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache with: path: ${{ steps.pip-cache.outputs.dir }} diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index fca9136763..000da1d3f2 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -38,7 +38,7 @@ jobs: run: | echo "datew=$(date '+%Y-%V')" >> $GITHUB_OUTPUT - name: cache for pip - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache with: path: ~/.cache/pip @@ -86,7 +86,7 @@ jobs: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT shell: bash - name: cache for pip - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache with: path: ${{ steps.pip-cache.outputs.dir }} @@ -141,7 +141,7 @@ jobs: run: | echo "datew=$(date '+%Y-%V')" >> $GITHUB_OUTPUT - name: cache for pip - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache with: path: | @@ -223,7 +223,7 @@ jobs: run: | echo "datew=$(date '+%Y-%V')" >> $GITHUB_OUTPUT - name: cache for pip - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache with: path: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fe1f8ea411..790d3c252b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -66,7 +66,7 @@ jobs: - if: matrix.python-version == '3.9' && startsWith(github.ref, 'refs/tags/') name: Upload artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: dist path: dist/ @@ -109,7 +109,7 @@ jobs: python setup.py build cat build/lib/monai/_version.py - name: Upload version - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: _version.py path: build/lib/monai/_version.py @@ -127,7 +127,7 @@ jobs: steps: - uses: actions/checkout@v6 - name: Download version - uses: actions/download-artifact@v6 + uses: actions/download-artifact@v7 with: name: _version.py - name: Set tag diff --git a/.github/workflows/setupapp.yml b/.github/workflows/setupapp.yml index 46e02592df..c12c424321 100644 --- a/.github/workflows/setupapp.yml +++ b/.github/workflows/setupapp.yml @@ -35,7 +35,7 @@ jobs: echo "datew=$(date '+%Y-%V')" >> $GITHUB_OUTPUT - name: cache for pip if: ${{ startsWith(github.ref, 'refs/heads/dev') }} - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache with: path: | @@ -95,7 +95,7 @@ jobs: run: | echo "datew=$(date '+%Y-%V')" >> $GITHUB_OUTPUT - name: cache for pip - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache with: path: | @@ -136,7 +136,7 @@ jobs: run: | echo "datew=$(date '+%Y-%V')" >> $GITHUB_OUTPUT - name: cache for pip - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache with: path: | diff --git a/.github/workflows/weekly-preview.yml b/.github/workflows/weekly-preview.yml index 44618b58d8..9f63c5bc90 100644 --- a/.github/workflows/weekly-preview.yml +++ b/.github/workflows/weekly-preview.yml @@ -21,7 +21,7 @@ jobs: run: | echo "datew=$(date '+%Y-%V')" >> $GITHUB_OUTPUT - name: cache for pip - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache with: path: ~/.cache/pip From 3eda773cb20b5ce83b4091beec0bdcaebd933ea9 Mon Sep 17 00:00:00 2001 From: Eric Kerfoot <17726042+ericspod@users.noreply.github.com> Date: Sat, 3 Jan 2026 21:19:34 -0500 Subject: [PATCH 2/5] DCO Remediation Commit for Eric Kerfoot <17726042+ericspod@users.noreply.github.com> I, Eric Kerfoot <17726042+ericspod@users.noreply.github.com>, hereby add my Signed-off-by to this commit: c763360165a925bfe13182cbcf5145ee129e78c8 Signed-off-by: Eric Kerfoot <17726042+ericspod@users.noreply.github.com> From 48480e84237b8e34ad1f61f9bab094c18358d7b4 Mon Sep 17 00:00:00 2001 From: Eric Kerfoot <17726042+ericspod@users.noreply.github.com> Date: Sun, 4 Jan 2026 21:04:02 -0500 Subject: [PATCH 3/5] Updates as recommended by Coderabbit Signed-off-by: Eric Kerfoot <17726042+ericspod@users.noreply.github.com> --- .github/workflows/docker.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index e9549ea012..cdae07cac5 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -37,7 +37,7 @@ jobs: python setup.py build cat build/lib/monai/_version.py - name: Upload version - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: _version.py path: build/lib/monai/_version.py diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 790d3c252b..8c0e72165a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -66,7 +66,7 @@ jobs: - if: matrix.python-version == '3.9' && startsWith(github.ref, 'refs/tags/') name: Upload artifacts - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: dist path: dist/ @@ -109,7 +109,7 @@ jobs: python setup.py build cat build/lib/monai/_version.py - name: Upload version - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: _version.py path: build/lib/monai/_version.py From 3773a5c61606896300fd30bfa5dcfb3cded1efb6 Mon Sep 17 00:00:00 2001 From: Eric Kerfoot <17726042+ericspod@users.noreply.github.com> Date: Sun, 4 Jan 2026 22:05:16 -0500 Subject: [PATCH 4/5] Cannot upgrade download-artifact to v7 if it's not compatible with upload-artifact v6 Signed-off-by: Eric Kerfoot <17726042+ericspod@users.noreply.github.com> --- .github/workflows/docker.yml | 4 ++-- .github/workflows/release.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index cdae07cac5..86ac1bf733 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -37,7 +37,7 @@ jobs: python setup.py build cat build/lib/monai/_version.py - name: Upload version - uses: actions/upload-artifact@v7 + uses: actions/upload-artifact@v6 with: name: _version.py path: build/lib/monai/_version.py @@ -57,7 +57,7 @@ jobs: with: ref: dev - name: Download version - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v6 with: name: _version.py - name: docker_build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8c0e72165a..5d20d280e1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -66,7 +66,7 @@ jobs: - if: matrix.python-version == '3.9' && startsWith(github.ref, 'refs/tags/') name: Upload artifacts - uses: actions/upload-artifact@v7 + uses: actions/upload-artifact@v6 with: name: dist path: dist/ @@ -109,7 +109,7 @@ jobs: python setup.py build cat build/lib/monai/_version.py - name: Upload version - uses: actions/upload-artifact@v7 + uses: actions/upload-artifact@v6 with: name: _version.py path: build/lib/monai/_version.py @@ -127,7 +127,7 @@ jobs: steps: - uses: actions/checkout@v6 - name: Download version - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v6 with: name: _version.py - name: Set tag From 0fd4399221544a7475a7e3c6b6d445d61b36095e Mon Sep 17 00:00:00 2001 From: Yun Liu Date: Mon, 5 Jan 2026 11:36:43 +0800 Subject: [PATCH 5/5] revert blossom-ci change Signed-off-by: Yun Liu --- .github/workflows/blossom-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/blossom-ci.yml b/.github/workflows/blossom-ci.yml index e1b214ddc7..63ac5536d8 100644 --- a/.github/workflows/blossom-ci.yml +++ b/.github/workflows/blossom-ci.yml @@ -51,7 +51,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v4 with: repository: ${{ fromJson(needs.Authorization.outputs.args).repo }} ref: ${{ fromJson(needs.Authorization.outputs.args).ref }}