Skip to content

Commit 510cf4b

Browse files
🌱 Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...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] <[email protected]>
1 parent c169977 commit 510cf4b

19 files changed

+25
-25
lines changed

.github/workflows/apidiff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
1717
steps:
1818
- name: Clone the code
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0
2222
- name: Setup Go

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424

2525
- name: Setup Go
2626
uses: actions/setup-go@v6

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616

1717
- name: Setup Go
1818
uses: actions/setup-go@v6

.github/workflows/cross-platform-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
2323
steps:
2424
- name: Clone the code
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626
- name: Setup Go
2727
uses: actions/setup-go@v6
2828
with:

.github/workflows/external-plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323

2424
- name: Setup Go
2525
uses: actions/setup-go@v6

.github/workflows/legacy-webhook-path.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
2323
steps:
2424
- name: Clone the code
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626
- name: Setup Go
2727
uses: actions/setup-go@v6
2828
with:

.github/workflows/lint-sample.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
3030
steps:
3131
- name: Clone the code
32-
uses: actions/checkout@v5
32+
uses: actions/checkout@v6
3333
- name: Setup Go
3434
uses: actions/setup-go@v6
3535
with:

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
1717
steps:
1818
- name: Clone the code
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
- name: Setup Go
2121
uses: actions/setup-go@v6
2222
with:
@@ -31,13 +31,13 @@ jobs:
3131
yamllint:
3232
runs-on: ubuntu-latest
3333
steps:
34-
- uses: actions/checkout@v5
34+
- uses: actions/checkout@v6
3535
- name: Run yamllint make target
3636
run: make yamllint
3737

3838
license:
3939
runs-on: ubuntu-latest
4040
steps:
41-
- uses: actions/checkout@v5
41+
- uses: actions/checkout@v6
4242
- name: Run license check
4343
run: make test-license

.github/workflows/release-version-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0
2222

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919
- name: Fetch all tags

0 commit comments

Comments
 (0)