Skip to content

Commit dc1755d

Browse files
⬆️ Bump actions/checkout from 6 to 7
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 967f3a6 commit dc1755d

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
swap-storage: true
4949
# Check out the current repository
5050
- name: Fetch Sources
51-
uses: actions/checkout@v6
51+
uses: actions/checkout@v7
5252

5353
# Set up Java environment for the next steps
5454
- name: Setup Java
@@ -108,7 +108,7 @@ jobs:
108108

109109
# Check out the current repository
110110
- name: Fetch Sources
111-
uses: actions/checkout@v6
111+
uses: actions/checkout@v7
112112

113113
# Set up Java environment for the next steps
114114
- name: Setup Java
@@ -159,7 +159,7 @@ jobs:
159159

160160
# Check out the current repository
161161
- name: Fetch Sources
162-
uses: actions/checkout@v6
162+
uses: actions/checkout@v7
163163
with:
164164
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
165165
fetch-depth: 0 # a full history is required for pull request analysis
@@ -193,7 +193,7 @@ jobs:
193193

194194
# Check out the current repository
195195
- name: Fetch Sources
196-
uses: actions/checkout@v6
196+
uses: actions/checkout@v7
197197

198198
# Set up Java environment for the next steps
199199
- name: Setup Java
@@ -238,7 +238,7 @@ jobs:
238238

239239
# Check out the current repository
240240
- name: Fetch Sources
241-
uses: actions/checkout@v6
241+
uses: actions/checkout@v7
242242

243243
# Remove old release drafts by using the curl request for the available releases with a draft flag
244244
- 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@v6
23+
uses: actions/checkout@v7
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@v6
36+
uses: actions/checkout@v7
3737

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

0 commit comments

Comments
 (0)