Bump actions/checkout from 5 to 6 (#2830)

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](https://github.com/actions/checkout/compare/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>
This commit is contained in:
dependabot[bot]
2025-11-24 08:30:57 +02:00
committed by GitHub
parent a69ee44446
commit 32f1eab745
7 changed files with 9 additions and 9 deletions

View File

@@ -92,7 +92,7 @@ jobs:
- 5672:5672
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ inputs.revision == '0-SNAPSHOT' && github.ref || inputs.revision }}

View File

@@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: "Release ${{ inputs.revision }}"
run: echo "Releasing ${{ inputs.revision }}"

View File

@@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ inputs.ref }}

View File

@@ -24,12 +24,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
# should work with actions/checkout@v5 with fetch-tags: true, BUT it doesn't work as expected!
# should work with actions/checkout@v6 with fetch-tags: true, BUT it doesn't work as expected!
# See https://github.com/actions/checkout/issues/1471.
# So we do workaround by manually fetching tags.
- name: Workaround of actions/checkout@v5 fetch-tags true doesn't work
- name: Workaround of actions/checkout@v6 fetch-tags true doesn't work
run: git fetch --tags
- name: Create Tag ${{ inputs.tag_name }}

View File

@@ -23,7 +23,7 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ inputs.ref }}

View File

@@ -41,7 +41,7 @@ jobs:
echo "Ref: ${{ inputs.ref }},"
echo "Maven Properties: ${{ inputs.maven_properties }}"
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
repository: ${{ inputs.repository }}
ref: ${{ inputs.ref }}

View File

@@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
repository: ${{ inputs.repository }}
ref: ${{ inputs.ref }}