Skip to content

Commit ffe9be7

Browse files
Bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent c1d02cf commit ffe9be7

File tree

13 files changed

+28
-28
lines changed

13 files changed

+28
-28
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/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v6
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

.github/workflows/conda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
minimum-size: 8GB
3333
maximum-size: 16GB
3434
disk-root: "D:"
35-
- uses: actions/checkout@v5
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
if: github.repository == 'Project-MONAI/MONAI'
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
- name: Set up Python 3.9
2222
uses: actions/setup-python@v6
2323
with:

.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@v5
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@v5
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@v5
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@v5
236+
- uses: actions/checkout@v6
237237
- name: Install MONAI
238238
id: monai-install
239239
run: |

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
if: ${{ false }} # disable docker build job project-monai/monai#7450
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525
# full history so that we can git describe
2626
with:
2727
ref: dev
@@ -53,7 +53,7 @@ jobs:
5353
needs: versioning_dev
5454
runs-on: ubuntu-latest
5555
steps:
56-
- uses: actions/checkout@v5
56+
- uses: actions/checkout@v6
5757
with:
5858
ref: dev
5959
- name: Download version

.github/workflows/integration.yml

Lines changed: 2 additions & 2 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@v5
16+
- uses: actions/checkout@v6
1717
with:
1818
token: ${{ secrets.PR_MAINTAIN }}
1919
repository: ${{ github.event.client_payload.pull_request.head.repo.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@v5
92+
- uses: actions/checkout@v6
9393
with:
9494
token: ${{ secrets.PR_MAINTAIN }}
9595
repository: ${{ github.event.client_payload.pull_request.head.repo.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@v5
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
os: [windows-latest, macOS-latest, ubuntu-latest]
3131
timeout-minutes: 40
3232
steps:
33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434
- name: Set up Python 3.9
3535
uses: actions/setup-python@v6
3636
with:
@@ -79,7 +79,7 @@ jobs:
7979
python-version: ['3.9', '3.10', '3.11', '3.12']
8080
timeout-minutes: 40
8181
steps:
82-
- uses: actions/checkout@v5
82+
- uses: actions/checkout@v6
8383
- name: Set up Python ${{ matrix.python-version }}
8484
uses: actions/setup-python@v6
8585
with:
@@ -128,7 +128,7 @@ jobs:
128128
pytorch-version: ['2.5.1', '2.6.0', '2.7.1', '2.8.0']
129129
timeout-minutes: 40
130130
steps:
131-
- uses: actions/checkout@v5
131+
- uses: actions/checkout@v6
132132
- name: Set up Python 3.9
133133
uses: actions/setup-python@v6
134134
with:

.github/workflows/pythonapp.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
matrix:
2929
opt: ["codeformat", "pytype", "mypy"]
3030
steps:
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232
- name: Set up Python 3.9
3333
uses: actions/setup-python@v6
3434
with:
@@ -70,7 +70,7 @@ jobs:
7070
minimum-size: 8GB
7171
maximum-size: 16GB
7272
disk-root: "D:"
73-
- uses: actions/checkout@v5
73+
- uses: actions/checkout@v6
7474
- name: Set up Python 3.9
7575
uses: actions/setup-python@v6
7676
with:
@@ -129,7 +129,7 @@ jobs:
129129
QUICKTEST: True
130130
shell: bash
131131
steps:
132-
- uses: actions/checkout@v5
132+
- uses: actions/checkout@v6
133133
with:
134134
fetch-depth: 0
135135
- name: Set up Python 3.9
@@ -213,7 +213,7 @@ jobs:
213213
build-docs:
214214
runs-on: ubuntu-latest
215215
steps:
216-
- uses: actions/checkout@v5
216+
- uses: actions/checkout@v6
217217
- name: Set up Python 3.9
218218
uses: actions/setup-python@v6
219219
with:

0 commit comments

Comments
 (0)