Skip to content

Commit c763360

Browse files
committed
Consolidating version bumps
1 parent 15fd428 commit c763360

File tree

10 files changed

+21
-21
lines changed

10 files changed

+21
-21
lines changed

.github/workflows/blossom-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
runs-on: ubuntu-latest
5252
steps:
5353
- name: Checkout code
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v6
5555
with:
5656
repository: ${{ fromJson(needs.Authorization.outputs.args).repo }}
5757
ref: ${{ fromJson(needs.Authorization.outputs.args).ref }}

.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@v5.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/cron-ngc-bundle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
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/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@v5
40+
uses: actions/upload-artifact@v6
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@v6
60+
uses: actions/download-artifact@v7
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
@@ -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: |
@@ -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: |

.github/workflows/pythonapp-min.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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 }}
@@ -96,7 +96,7 @@ jobs:
9696
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
9797
shell: bash
9898
- name: cache for pip
99-
uses: actions/cache@v4
99+
uses: actions/cache@v5
100100
id: cache
101101
with:
102102
path: ${{ steps.pip-cache.outputs.dir }}
@@ -145,7 +145,7 @@ jobs:
145145
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
146146
shell: bash
147147
- name: cache for pip
148-
uses: actions/cache@v4
148+
uses: actions/cache@v5
149149
id: cache
150150
with:
151151
path: ${{ steps.pip-cache.outputs.dir }}

.github/workflows/pythonapp.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: |
3939
echo "datew=$(date '+%Y-%V')" >> $GITHUB_OUTPUT
4040
- name: cache for pip
41-
uses: actions/cache@v4
41+
uses: actions/cache@v5
4242
id: cache
4343
with:
4444
path: ~/.cache/pip
@@ -86,7 +86,7 @@ jobs:
8686
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
8787
shell: bash
8888
- name: cache for pip
89-
uses: actions/cache@v4
89+
uses: actions/cache@v5
9090
id: cache
9191
with:
9292
path: ${{ steps.pip-cache.outputs.dir }}
@@ -141,7 +141,7 @@ jobs:
141141
run: |
142142
echo "datew=$(date '+%Y-%V')" >> $GITHUB_OUTPUT
143143
- name: cache for pip
144-
uses: actions/cache@v4
144+
uses: actions/cache@v5
145145
id: cache
146146
with:
147147
path: |
@@ -223,7 +223,7 @@ jobs:
223223
run: |
224224
echo "datew=$(date '+%Y-%V')" >> $GITHUB_OUTPUT
225225
- name: cache for pip
226-
uses: actions/cache@v4
226+
uses: actions/cache@v5
227227
id: cache
228228
with:
229229
path: |

.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@v5
69+
uses: actions/upload-artifact@v6
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@v5
112+
uses: actions/upload-artifact@v6
113113
with:
114114
name: _version.py
115115
path: build/lib/monai/_version.py
@@ -127,7 +127,7 @@ jobs:
127127
steps:
128128
- uses: actions/checkout@v6
129129
- name: Download version
130-
uses: actions/download-artifact@v6
130+
uses: actions/download-artifact@v7
131131
with:
132132
name: _version.py
133133
- name: Set tag

.github/workflows/setupapp.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
echo "datew=$(date '+%Y-%V')" >> $GITHUB_OUTPUT
3636
- name: cache for pip
3737
if: ${{ startsWith(github.ref, 'refs/heads/dev') }}
38-
uses: actions/cache@v4
38+
uses: actions/cache@v5
3939
id: cache
4040
with:
4141
path: |
@@ -95,7 +95,7 @@ jobs:
9595
run: |
9696
echo "datew=$(date '+%Y-%V')" >> $GITHUB_OUTPUT
9797
- name: cache for pip
98-
uses: actions/cache@v4
98+
uses: actions/cache@v5
9999
id: cache
100100
with:
101101
path: |
@@ -136,7 +136,7 @@ jobs:
136136
run: |
137137
echo "datew=$(date '+%Y-%V')" >> $GITHUB_OUTPUT
138138
- name: cache for pip
139-
uses: actions/cache@v4
139+
uses: actions/cache@v5
140140
id: cache
141141
with:
142142
path: |

.github/workflows/weekly-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: |
2222
echo "datew=$(date '+%Y-%V')" >> $GITHUB_OUTPUT
2323
- name: cache for pip
24-
uses: actions/cache@v4
24+
uses: actions/cache@v5
2525
id: cache
2626
with:
2727
path: ~/.cache/pip

0 commit comments

Comments
 (0)