From 7ac2509915b147411f984e7107ea5cc21b4f1fcc Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 19 Jan 2026 14:12:21 +0000 Subject: [PATCH] Update actions/checkout action from vv4 to v6 --- .github/workflows/deploy.yml | 2 +- .github/workflows/gitflow-hotfix-finish.yml | 8 ++++---- .github/workflows/gitflow-release-finish.yml | 10 +++++----- .github/workflows/hotfix-manual.yml | 2 +- .github/workflows/maven-jreleaser-release.yml | 4 ++-- .github/workflows/release-manual.yml | 2 +- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5858e8d..c40cb76 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -12,7 +12,7 @@ jobs: outputs: version: ${{ steps.get-version.outputs.version }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Install xmlstarlet diff --git a/.github/workflows/gitflow-hotfix-finish.yml b/.github/workflows/gitflow-hotfix-finish.yml index 68ea738..2c44e94 100644 --- a/.github/workflows/gitflow-hotfix-finish.yml +++ b/.github/workflows/gitflow-hotfix-finish.yml @@ -65,7 +65,7 @@ jobs: outputs: version: ${{ steps.get_version.outputs.version }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ inputs.hotfix_branch }} fetch-depth: 0 @@ -89,7 +89,7 @@ jobs: needs: get-hotfix-version runs-on: ${{ inputs.runner || 'ubuntu-24.04' }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ inputs.hotfix_branch }} fetch-depth: 0 @@ -123,7 +123,7 @@ jobs: JRELEASER_UPDATE: true JRELEASER_GIT_ROOT_SEARCH: true steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ inputs.version_tag_prefix || 'v' }}${{ needs.get-hotfix-version.outputs.version }} fetch-depth: 0 @@ -170,7 +170,7 @@ jobs: if: inputs.merge_to_main == true runs-on: ${{ inputs.runner || 'ubuntu-24.04' }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ inputs.base_branch || 'main' }} fetch-depth: 0 diff --git a/.github/workflows/gitflow-release-finish.yml b/.github/workflows/gitflow-release-finish.yml index c268dd4..d5bdca9 100644 --- a/.github/workflows/gitflow-release-finish.yml +++ b/.github/workflows/gitflow-release-finish.yml @@ -69,7 +69,7 @@ jobs: outputs: version: ${{ steps.get_version.outputs.version }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ inputs.release_branch }} fetch-depth: 0 @@ -93,7 +93,7 @@ jobs: needs: get-release-version runs-on: ${{ inputs.runner || 'ubuntu-24.04' }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ inputs.release_branch }} fetch-depth: 0 @@ -127,7 +127,7 @@ jobs: JRELEASER_UPDATE: true JRELEASER_GIT_ROOT_SEARCH: true steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ inputs.version_tag_prefix || 'v' }}${{ needs.get-release-version.outputs.version }} fetch-depth: 0 @@ -173,7 +173,7 @@ jobs: needs: [get-release-version, publish-release] runs-on: ${{ inputs.runner || 'ubuntu-24.04' }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ inputs.base_branch || 'main' }} fetch-depth: 0 @@ -200,7 +200,7 @@ jobs: needs: [get-release-version, merge-release-to-base] runs-on: ${{ inputs.runner || 'ubuntu-24.04' }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ inputs.base_branch || 'main' }} fetch-depth: 0 diff --git a/.github/workflows/hotfix-manual.yml b/.github/workflows/hotfix-manual.yml index 37452bf..e85983d 100644 --- a/.github/workflows/hotfix-manual.yml +++ b/.github/workflows/hotfix-manual.yml @@ -30,7 +30,7 @@ jobs: JRELEASER_UPDATE: true JRELEASER_GIT_ROOT_SEARCH: true steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.event.inputs.git_ref }} fetch-depth: 0 diff --git a/.github/workflows/maven-jreleaser-release.yml b/.github/workflows/maven-jreleaser-release.yml index 0dfc5ab..29b3d6b 100644 --- a/.github/workflows/maven-jreleaser-release.yml +++ b/.github/workflows/maven-jreleaser-release.yml @@ -94,14 +94,14 @@ jobs: version: ${{ steps.release.outputs.version }} steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 if: ${{ inputs.git_ref == '' }} with: fetch-depth: 0 ssh-key: ${{ secrets.GIT_SSH_KEY }} - name: Checkout code with reference - uses: actions/checkout@v4 + uses: actions/checkout@v6 if: ${{ inputs.git_ref != '' }} with: ref: ${{ inputs.git_ref }} diff --git a/.github/workflows/release-manual.yml b/.github/workflows/release-manual.yml index 177b328..8cf80b1 100644 --- a/.github/workflows/release-manual.yml +++ b/.github/workflows/release-manual.yml @@ -30,7 +30,7 @@ jobs: JRELEASER_UPDATE: true JRELEASER_GIT_ROOT_SEARCH: true steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.event.inputs.git_ref }} fetch-depth: 0