Skip to content

Commit fd1e952

Browse files
Bump actions/checkout from 4 to 5 (#1850)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: SACHIDANAND ALLE <sachidanand.alle@gmail.com>
1 parent 5087e3b commit fd1e952

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/blossom-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
runs-on: ubuntu-latest
6464
steps:
6565
- name: Checkout code
66-
uses: actions/checkout@v4
66+
uses: actions/checkout@v5
6767
with:
6868
repository: ${{ fromJson(needs.Authorization.outputs.args).repo }}
6969
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
@@ -49,7 +49,7 @@ jobs:
4949

5050
steps:
5151
- name: Checkout repository
52-
uses: actions/checkout@v4
52+
uses: actions/checkout@v5
5353

5454
# Initializes the CodeQL tools for scanning.
5555
- name: Initialize CodeQL

.github/workflows/docker-plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
env:
2626
MONAI_ZOO_AUTH_TOKEN: ${{ github.token }}
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
- name: Set up Python 3.9
3030
uses: actions/setup-python@v5
3131
with:

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
env:
2828
MONAI_ZOO_AUTH_TOKEN: ${{ github.token }}
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
- name: Cleanup
3232
run: |
3333
echo Before Cleanup...

.github/workflows/pythonapp.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
os: [windows-latest, ubuntu-latest]
3535
python-version: ["3.9", "3.10", "3.11", "3.12"]
3636
steps:
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v5
3838
- name: Set up Python
3939
uses: actions/setup-python@v5
4040
with:
@@ -56,7 +56,7 @@ jobs:
5656
matrix:
5757
python-version: ["3.9", "3.10", "3.11", "3.12"]
5858
steps:
59-
- uses: actions/checkout@v4
59+
- uses: actions/checkout@v5
6060
- name: Set up Python
6161
uses: actions/setup-python@v5
6262
with:
@@ -90,7 +90,7 @@ jobs:
9090
matrix:
9191
python-version: ["3.9", "3.10", "3.11", "3.12"]
9292
steps:
93-
- uses: actions/checkout@v4
93+
- uses: actions/checkout@v5
9494
with:
9595
fetch-depth: 0
9696
- uses: actions/setup-node@v4
@@ -152,7 +152,7 @@ jobs:
152152
matrix:
153153
python-version: ["3.10"]
154154
steps:
155-
- uses: actions/checkout@v4
155+
- uses: actions/checkout@v5
156156
- name: Set up Python
157157
uses: actions/setup-python@v5
158158
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
env:
3232
MONAI_ZOO_AUTH_TOKEN: ${{ github.token }}
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
with:
3636
fetch-depth: 0
3737
- uses: actions/setup-node@v4

0 commit comments

Comments
 (0)