Skip to content

Commit 4bba5f7

Browse files
Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...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 d72a854 commit 4bba5f7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656

5757
# Check out the current repository
5858
- name: Fetch Sources
59-
uses: actions/checkout@v5
59+
uses: actions/checkout@v6
6060

6161
# Set up the Java environment for the next steps
6262
- name: Setup Java
@@ -116,7 +116,7 @@ jobs:
116116

117117
# Check out the current repository
118118
- name: Fetch Sources
119-
uses: actions/checkout@v5
119+
uses: actions/checkout@v6
120120

121121
# Set up the Java environment for the next steps
122122
- name: Setup Java
@@ -168,7 +168,7 @@ jobs:
168168

169169
# Check out the current repository
170170
- name: Fetch Sources
171-
uses: actions/checkout@v5
171+
uses: actions/checkout@v6
172172
with:
173173
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
174174
fetch-depth: 0 # a full history is required for pull request analysis
@@ -202,7 +202,7 @@ jobs:
202202

203203
# Check out the current repository
204204
- name: Fetch Sources
205-
uses: actions/checkout@v5
205+
uses: actions/checkout@v6
206206

207207
# Set up the Java environment for the next steps
208208
- name: Setup Java
@@ -247,7 +247,7 @@ jobs:
247247

248248
# Check out the current repository
249249
- name: Fetch Sources
250-
uses: actions/checkout@v5
250+
uses: actions/checkout@v6
251251

252252
# Remove old release drafts by using the curl request for the available releases with a draft flag
253253
- name: Remove Old Release Drafts

.github/workflows/release.yml

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

3737
# Check out the current repository
3838
- name: Fetch Sources
39-
uses: actions/checkout@v5
39+
uses: actions/checkout@v6
4040
with:
4141
ref: ${{ github.event.release.tag_name }}
4242

0 commit comments

Comments
 (0)