Skip to content

Commit 119bc5c

Browse files
Bump actions/checkout from 5 to 6 (#1384)
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]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 8991451 commit 119bc5c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
run: git config --global core.autocrlf false
4242
if: startsWith(matrix.os, 'windows')
4343

44-
- uses: actions/checkout@v5
44+
- uses: actions/checkout@v6
4545
- name: Set up JDK ${{matrix.java.version}}
4646
uses: actions/setup-java@v5
4747
with:
@@ -70,7 +70,7 @@ jobs:
7070
run: git config --global core.autocrlf false
7171
if: startsWith(matrix.os, 'windows')
7272

73-
- uses: actions/checkout@v5
73+
- uses: actions/checkout@v6
7474
- name: Set up JDK ${{matrix.java.version}}
7575
uses: actions/setup-java@v5
7676
with:

.github/workflows/build_website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
name: Build Website
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v6
3030
- name: Set up JDK 17
3131
uses: actions/setup-java@v5
3232
with:

.github/workflows/codeql.yml

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

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828

2929
- name: Setup Java
3030
uses: actions/setup-java@v5

.github/workflows/quarkus-snapshot.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ jobs:
3636
java-version: ${{ env.JAVA_VERSION }}
3737

3838
- name: Checkout repo
39-
uses: actions/checkout@v5
39+
uses: actions/checkout@v6
4040
with:
4141
path: current-repo
4242

4343
- name: Checkout Ecosystem
44-
uses: actions/checkout@v5
44+
uses: actions/checkout@v6
4545
with:
4646
repository: ${{ env.ECOSYSTEM_CI_REPO }}
4747
path: ecosystem-ci

0 commit comments

Comments
 (0)