Skip to content

Commit 1c43be8

Browse files
authored
Merge pull request #25 from phodal-archive/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents 1e24691 + a0d492f commit 1c43be8

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
@@ -38,7 +38,7 @@ jobs:
3838

3939
# Check out the current repository
4040
- name: Fetch Sources
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
4242

4343
# Validate wrapper
4444
- name: Gradle Wrapper Validation
@@ -102,7 +102,7 @@ jobs:
102102

103103
# Check out the current repository
104104
- name: Fetch Sources
105-
uses: actions/checkout@v4
105+
uses: actions/checkout@v5
106106

107107
# Set up Java environment for the next steps
108108
- name: Setup Java
@@ -153,7 +153,7 @@ jobs:
153153

154154
# Check out the current repository
155155
- name: Fetch Sources
156-
uses: actions/checkout@v4
156+
uses: actions/checkout@v5
157157
with:
158158
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
159159
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@v4
190+
uses: actions/checkout@v5
191191

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

233233
# Check out the current repository
234234
- name: Fetch Sources
235-
uses: actions/checkout@v4
235+
uses: actions/checkout@v5
236236

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

.github/workflows/release.yml

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

2121
# Check out the current repository
2222
- name: Fetch Sources
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
with:
2525
ref: ${{ github.event.release.tag_name }}
2626

.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@v4
36+
uses: actions/checkout@v5
3737

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

0 commit comments

Comments
 (0)