Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/gitflow-hotfix-finish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/gitflow-release-finish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hotfix-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/maven-jreleaser-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down