Skip to content

Commit be84e9a

Browse files
Bump actions/checkout from 5 to 6
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]>
1 parent de03b17 commit be84e9a

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/automatic-sync-main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- name: Checkout Camel project
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v6
3232
with:
3333
repository: apache/camel
3434
persist-credentials: false
@@ -44,7 +44,7 @@ jobs:
4444
run: ./mvnw -V --no-transfer-progress -Dquickly clean install
4545
working-directory: ${{ github.workspace }}/camel
4646
- name: Checkout Camel-spring-boot project
47-
uses: actions/checkout@v5
47+
uses: actions/checkout@v6
4848
with:
4949
ref: main
5050
persist-credentials: false

.github/workflows/depsreview.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: 'Checkout Repository'
13-
uses: actions/checkout@v5
13+
uses: actions/checkout@v6
1414
- name: 'Dependency Review'
1515
uses: actions/dependency-review-action@v4

.github/workflows/generate-sbom-main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- name: Checkout Camel project
33-
uses: actions/checkout@v5
33+
uses: actions/checkout@v6
3434
with:
3535
repository: apache/camel
3636
persist-credentials: false
@@ -46,7 +46,7 @@ jobs:
4646
run: ./mvnw -B -V --no-transfer-progress -Dquickly install
4747
working-directory: ${{ github.workspace }}/camel
4848
- name: Checkout Camel-spring-boot project
49-
uses: actions/checkout@v5
49+
uses: actions/checkout@v6
5050
with:
5151
ref: main
5252
persist-credentials: false

.github/workflows/pr-build-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
matrix:
4040
java: ['17']
4141
steps:
42-
- uses: actions/checkout@v5
42+
- uses: actions/checkout@v6
4343
with:
4444
persist-credentials: false
4545
- name: Set Up Java

.github/workflows/pr-doc-validation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ jobs:
4040
runs-on: ubuntu-latest
4141
steps:
4242
- name: Checkout camel-spring-boot repo
43-
uses: actions/checkout@v5
43+
uses: actions/checkout@v6
4444
with:
4545
persist-credentials: false
4646
submodules: recursive
4747
path: camel-spring-boot
4848
- name: Checkout camel-website repo
49-
uses: actions/checkout@v5
49+
uses: actions/checkout@v6
5050
with:
5151
repository: apache/camel-website
5252
path: camel-website

0 commit comments

Comments
 (0)