Skip to content

Commit e1089fe

Browse files
Bump actions/checkout from 5 to 6 (#3236)
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 7f81db3 commit e1089fe

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
]
3838
name: Build with Java ${{ matrix.java.version }} ${{ matrix.java.name }}
3939
steps:
40-
- uses: actions/checkout@v5
40+
- uses: actions/checkout@v6
4141
- uses: actions/setup-java@v5
4242
with:
4343
java-version: ${{ matrix.java.version }}

.github/workflows/build-podman.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: Set up testcontainers for podman
5555
run: |
5656
echo ryuk.container.privileged=true > ~/.testcontainers.properties
57-
- uses: actions/checkout@v5
57+
- uses: actions/checkout@v6
5858
- uses: actions/setup-java@v5
5959
with:
6060
java-version: ${{ matrix.java.version }}

.github/workflows/build-pull.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
]
3737
name: Build with Java ${{ matrix.java.version }} ${{ matrix.java.name }}
3838
steps:
39-
- uses: actions/checkout@v5
39+
- uses: actions/checkout@v6
4040
- uses: actions/setup-java@v5
4141
with:
4242
java-version: ${{ matrix.java.version }}

.github/workflows/prepare-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
private-key: ${{ secrets.CI_APP_PRIVATE_KEY }}
3434

3535
- name: Checkout
36-
uses: actions/checkout@v5
36+
uses: actions/checkout@v6
3737
with:
3838
ref: ${{ github.ref }}
3939
token: ${{steps.app-token.outputs.token}}

.github/workflows/push-deploy-docs.yml

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

1818
steps:
1919
- name: Git checkout
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0
2323

.github/workflows/run-kafka-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
KAFKA_CONTAINER_VERSION: ${{ inputs.kafkaBrokerVersion }}
1717
name: Test with Kafka ${{ inputs.kafkaCLientVersion }} and Broker ${{ inputs.kafkaBrokerVersion }}
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
- uses: actions/setup-java@v5
2121
with:
2222
java-version: 21
@@ -36,7 +36,7 @@ jobs:
3636
KAFKA_CONTAINER_VERSION: ${{ inputs.kafkaBrokerVersion }}
3737
name: Flaky Test with Kafka ${{ inputs.kafkaCLientVersion }} and Broker ${{ inputs.kafkaBrokerVersion }}
3838
steps:
39-
- uses: actions/checkout@v5
39+
- uses: actions/checkout@v6
4040
- uses: actions/setup-java@v5
4141
with:
4242
java-version: 21

0 commit comments

Comments
 (0)