Skip to content

Commit 953c641

Browse files
Update actions/checkout action from vv4 to v6 (#258)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 6cd3c32 commit 953c641

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
outputs:
1313
version: ${{ steps.get-version.outputs.version }}
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0
1818
- name: Install xmlstarlet

.github/workflows/gitflow-hotfix-finish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
outputs:
6666
version: ${{ steps.get_version.outputs.version }}
6767
steps:
68-
- uses: actions/checkout@v4
68+
- uses: actions/checkout@v6
6969
with:
7070
ref: ${{ inputs.hotfix_branch }}
7171
fetch-depth: 0
@@ -89,7 +89,7 @@ jobs:
8989
needs: get-hotfix-version
9090
runs-on: ${{ inputs.runner || 'ubuntu-24.04' }}
9191
steps:
92-
- uses: actions/checkout@v4
92+
- uses: actions/checkout@v6
9393
with:
9494
ref: ${{ inputs.hotfix_branch }}
9595
fetch-depth: 0
@@ -123,7 +123,7 @@ jobs:
123123
JRELEASER_UPDATE: true
124124
JRELEASER_GIT_ROOT_SEARCH: true
125125
steps:
126-
- uses: actions/checkout@v4
126+
- uses: actions/checkout@v6
127127
with:
128128
ref: ${{ inputs.version_tag_prefix || 'v' }}${{ needs.get-hotfix-version.outputs.version }}
129129
fetch-depth: 0
@@ -170,7 +170,7 @@ jobs:
170170
if: inputs.merge_to_main == true
171171
runs-on: ${{ inputs.runner || 'ubuntu-24.04' }}
172172
steps:
173-
- uses: actions/checkout@v4
173+
- uses: actions/checkout@v6
174174
with:
175175
ref: ${{ inputs.base_branch || 'main' }}
176176
fetch-depth: 0

.github/workflows/gitflow-release-finish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
outputs:
7070
version: ${{ steps.get_version.outputs.version }}
7171
steps:
72-
- uses: actions/checkout@v4
72+
- uses: actions/checkout@v6
7373
with:
7474
ref: ${{ inputs.release_branch }}
7575
fetch-depth: 0
@@ -93,7 +93,7 @@ jobs:
9393
needs: get-release-version
9494
runs-on: ${{ inputs.runner || 'ubuntu-24.04' }}
9595
steps:
96-
- uses: actions/checkout@v4
96+
- uses: actions/checkout@v6
9797
with:
9898
ref: ${{ inputs.release_branch }}
9999
fetch-depth: 0
@@ -127,7 +127,7 @@ jobs:
127127
JRELEASER_UPDATE: true
128128
JRELEASER_GIT_ROOT_SEARCH: true
129129
steps:
130-
- uses: actions/checkout@v4
130+
- uses: actions/checkout@v6
131131
with:
132132
ref: ${{ inputs.version_tag_prefix || 'v' }}${{ needs.get-release-version.outputs.version }}
133133
fetch-depth: 0
@@ -173,7 +173,7 @@ jobs:
173173
needs: [get-release-version, publish-release]
174174
runs-on: ${{ inputs.runner || 'ubuntu-24.04' }}
175175
steps:
176-
- uses: actions/checkout@v4
176+
- uses: actions/checkout@v6
177177
with:
178178
ref: ${{ inputs.base_branch || 'main' }}
179179
fetch-depth: 0
@@ -200,7 +200,7 @@ jobs:
200200
needs: [get-release-version, merge-release-to-base]
201201
runs-on: ${{ inputs.runner || 'ubuntu-24.04' }}
202202
steps:
203-
- uses: actions/checkout@v4
203+
- uses: actions/checkout@v6
204204
with:
205205
ref: ${{ inputs.base_branch || 'main' }}
206206
fetch-depth: 0

.github/workflows/hotfix-manual.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
JRELEASER_UPDATE: true
3131
JRELEASER_GIT_ROOT_SEARCH: true
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v6
3434
with:
3535
ref: ${{ github.event.inputs.git_ref }}
3636
fetch-depth: 0

.github/workflows/maven-jreleaser-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,14 @@ jobs:
9494
version: ${{ steps.release.outputs.version }}
9595
steps:
9696
- name: Checkout code
97-
uses: actions/checkout@v4
97+
uses: actions/checkout@v6
9898
if: ${{ inputs.git_ref == '' }}
9999
with:
100100
fetch-depth: 0
101101
ssh-key: ${{ secrets.GIT_SSH_KEY }}
102102

103103
- name: Checkout code with reference
104-
uses: actions/checkout@v4
104+
uses: actions/checkout@v6
105105
if: ${{ inputs.git_ref != '' }}
106106
with:
107107
ref: ${{ inputs.git_ref }}

.github/workflows/release-manual.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
JRELEASER_UPDATE: true
3131
JRELEASER_GIT_ROOT_SEARCH: true
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v6
3434
with:
3535
ref: ${{ github.event.inputs.git_ref }}
3636
fetch-depth: 0

0 commit comments

Comments
 (0)