Skip to content

Commit 573d579

Browse files
Bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...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>
1 parent 04b70d5 commit 573d579

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
# NATS started manually in steps to enable JetStream (-js)
3131

3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v6
3434

3535
- name: Free Disk Space
3636
run: |
@@ -203,15 +203,15 @@ jobs:
203203
permissions:
204204
contents: read
205205
steps:
206-
- uses: actions/checkout@v4
206+
- uses: actions/checkout@v6
207207
- uses: crate-ci/typos@master
208208

209209
docker-verify:
210210
name: Verify Docker Build
211211
runs-on: ubuntu-latest
212212
needs: checks
213213
steps:
214-
- uses: actions/checkout@v4
214+
- uses: actions/checkout@v6
215215

216216
- name: Set up Docker Buildx
217217
uses: docker/setup-buildx-action@v3

.github/workflows/commit-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
startsWith(github.event.pull_request.head.ref, 'chore/sync-')
1919
run: echo "⏭️ Skipping commit lint for release/sync PR"
2020

21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222
if: >
2323
!startsWith(github.event.pull_request.head.ref, 'release/') &&
2424
!startsWith(github.event.pull_request.head.ref, 'chore/sync-')

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
contents: write
1616

1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v6
1919

2020
- name: Free Disk Space
2121
run: |

.github/workflows/release-prepare.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
!startsWith(github.event.head_commit.message, 'chore(release):') &&
2727
!contains(github.event.head_commit.message, 'release/v')
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v6
3030
with:
3131
fetch-depth: 0
3232
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release-publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
has_tap_token: ${{ steps.secrets.outputs.has_tap_token }}
3434
has_apt_token: ${{ steps.secrets.outputs.has_apt_token }}
3535
steps:
36-
- uses: actions/checkout@v4
36+
- uses: actions/checkout@v6
3737
with:
3838
ref: ${{ github.event.pull_request.merge_commit_sha }}
3939
fetch-depth: 0
@@ -142,7 +142,7 @@ jobs:
142142
deb_arch: ""
143143
runs-on: ${{ matrix.os }}
144144
steps:
145-
- uses: actions/checkout@v4
145+
- uses: actions/checkout@v6
146146
with:
147147
ref: ${{ needs.tag.outputs.tag }}
148148

@@ -228,7 +228,7 @@ jobs:
228228
needs: tag
229229
runs-on: ubuntu-latest
230230
steps:
231-
- uses: actions/checkout@v4
231+
- uses: actions/checkout@v6
232232
with:
233233
ref: ${{ needs.tag.outputs.tag }}
234234

@@ -294,7 +294,7 @@ jobs:
294294
# Only run if the TAP_GITHUB_TOKEN secret is configured
295295
if: needs.tag.outputs.has_tap_token == 'true'
296296
steps:
297-
- uses: actions/checkout@v4
297+
- uses: actions/checkout@v6
298298
with:
299299
ref: ${{ needs.tag.outputs.tag }}
300300

@@ -442,7 +442,7 @@ jobs:
442442
contents: write
443443
pull-requests: write
444444
steps:
445-
- uses: actions/checkout@v4
445+
- uses: actions/checkout@v6
446446
with:
447447
ref: main
448448
fetch-depth: 0

0 commit comments

Comments
 (0)