Skip to content

Commit cb34a6a

Browse files
Update actions/checkout action to v6 (#144)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent f3d0bb2 commit cb34a6a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build.yml

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

4242
# Check out the current repository
4343
- name: Fetch Sources
44-
uses: actions/checkout@v5
44+
uses: actions/checkout@v6
4545

4646
# Set up the Java environment for the next steps
4747
- name: Setup Java
@@ -92,7 +92,7 @@ jobs:
9292

9393
# Check out the current repository
9494
- name: Fetch Sources
95-
uses: actions/checkout@v5
95+
uses: actions/checkout@v6
9696

9797
# Set up the Java environment for the next steps
9898
- name: Setup Java
@@ -147,7 +147,7 @@ jobs:
147147

148148
# Check out the current repository
149149
- name: Fetch Sources
150-
uses: actions/checkout@v5
150+
uses: actions/checkout@v6
151151
with:
152152
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
153153
fetch-depth: 0 # a full history is required for pull request analysis
@@ -187,7 +187,7 @@ jobs:
187187

188188
# Check out the current repository
189189
- name: Fetch Sources
190-
uses: actions/checkout@v5
190+
uses: actions/checkout@v6
191191

192192
# Set up the Java environment for the next steps
193193
- name: Setup Java
@@ -227,7 +227,7 @@ jobs:
227227

228228
# Check out the current repository
229229
- name: Fetch Sources
230-
uses: actions/checkout@v5
230+
uses: actions/checkout@v6
231231

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

.github/workflows/release.yml

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

2828
# Check out the current repository
2929
- name: Fetch Sources
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131
with:
3232
ref: ${{ github.event.release.tag_name }}
3333

.github/workflows/run-ui-tests.yml

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

3434
# Check out the current repository
3535
- name: Fetch Sources
36-
uses: actions/checkout@v5
36+
uses: actions/checkout@v6
3737

3838
# Set up the Java environment for the next steps
3939
- name: Setup Java

0 commit comments

Comments
 (0)