Skip to content

Commit 56798d9

Browse files
build: bump actions/checkout from 5 to 6 (#517)
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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 3cddc0a commit 56798d9

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
# Check out current repository
1515
- name: Fetch Sources
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717

1818
# Validate wrapper
1919
- name: Gradle Wrapper Validation

.github/workflows/publish-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
# Check out current repository
1212
- name: Fetch Sources
13-
uses: actions/checkout@v5
13+
uses: actions/checkout@v6
1414

1515
- name: Extract Tag Name
1616
uses: olegtarasov/get-tag@v2.1
@@ -64,7 +64,7 @@ jobs:
6464
runs-on: ubuntu-latest
6565
steps:
6666
- name: Checkout
67-
uses: actions/checkout@v5
67+
uses: actions/checkout@v6
6868
with:
6969
fetch-depth: 0
7070

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
# Check out current repository
1616
- name: Fetch Sources
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818

1919
- name: Extract Tag Name
2020
uses: olegtarasov/get-tag@v2.1

.github/workflows/sonarcloud.yml

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

2424
# Check out current repository
2525
- name: Fetch Sources
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
if: ${{ env.SONAR_TOKEN != null }}
2828
with:
2929
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
# Check out current repository
1919
- name: Fetch Sources
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121

2222
# Validate wrapper
2323
- name: Gradle Wrapper Validation

.github/workflows/verify.yml

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

2020
# Check out current repository
2121
- name: Fetch Sources
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323

2424
# Set up Java environment for the next steps
2525
- name: Setup Java

0 commit comments

Comments
 (0)