Skip to content

Commit 06ab211

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 52e5159 commit 06ab211

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
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: |
@@ -202,15 +202,15 @@ jobs:
202202
permissions:
203203
contents: read
204204
steps:
205-
- uses: actions/checkout@v4
205+
- uses: actions/checkout@v6
206206
- uses: crate-ci/typos@master
207207

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

215215
- name: Set up Docker Buildx
216216
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
@@ -16,7 +16,7 @@ jobs:
1616
if: startsWith(github.event.pull_request.head.ref, 'release/')
1717
run: echo "⏭️ Skipping commit lint for release PR"
1818

19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020
if: "!startsWith(github.event.pull_request.head.ref, 'release/')"
2121
with:
2222
fetch-depth: 0

.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
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
# Manual trigger only (workflow_dispatch) — no skip conditions needed
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v6
2525
with:
2626
fetch-depth: 0
2727
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
has_tap_token: ${{ steps.secrets.outputs.has_tap_token }}
3131
has_apt_token: ${{ steps.secrets.outputs.has_apt_token }}
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v6
3434
with:
3535
ref: ${{ github.event.pull_request.merge_commit_sha }}
3636
fetch-depth: 0
@@ -139,7 +139,7 @@ jobs:
139139
deb_arch: ""
140140
runs-on: ${{ matrix.os }}
141141
steps:
142-
- uses: actions/checkout@v4
142+
- uses: actions/checkout@v6
143143
with:
144144
ref: ${{ needs.tag.outputs.tag }}
145145

@@ -265,7 +265,7 @@ jobs:
265265
# Only run if the TAP_GITHUB_TOKEN secret is configured
266266
if: needs.tag.outputs.has_tap_token == 'true'
267267
steps:
268-
- uses: actions/checkout@v4
268+
- uses: actions/checkout@v6
269269
with:
270270
ref: ${{ needs.tag.outputs.tag }}
271271

0 commit comments

Comments
 (0)