Skip to content

Commit bb6d79d

Browse files
Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 91f0a3f commit bb6d79d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
}
3939

4040
steps:
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v5
4242

4343
- name: Set up JDK ${{ matrix.java.version }}
4444
uses: actions/setup-java@v4

.github/workflows/downstream.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
}
4646

4747
steps:
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v5
4949

5050
- name: Set up JDK 21
5151
uses: actions/setup-java@v4
@@ -75,7 +75,7 @@ jobs:
7575
echo "::set-output name=version::$(mvn org.apache.maven.plugins:maven-help-plugin:3.2.0:evaluate -Dexpression=project.version -q -DforceStdout)"
7676
shell: bash
7777

78-
- uses: actions/checkout@v4
78+
- uses: actions/checkout@v5
7979
with:
8080
repository: ${{ matrix.project.organization }}/${{ matrix.project.repository }}
8181
path: ${{ matrix.project.repository }}

.github/workflows/quarkus-snapshot.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Checkout repo
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929
with:
3030
path: current-repo
3131

@@ -36,7 +36,7 @@ jobs:
3636
distribution: temurin
3737

3838
- name: Checkout Ecosystem
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v5
4040
with:
4141
repository: ${{ env.ECOSYSTEM_CI_REPO }}
4242
path: ecosystem-ci

0 commit comments

Comments
 (0)