Skip to content

Commit fae725a

Browse files
build(deps): 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] <support@github.com>
1 parent 2928307 commit fae725a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/codeql.yaml

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

3131
steps:
3232
- name: Checkout repository
33-
uses: actions/checkout@v5
33+
uses: actions/checkout@v6
3434
with:
3535
# We must fetch at least the immediate parents so that if this is
3636
# a pull request then we can checkout the head.

.github/workflows/pr.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
go-version: 1.18
1919
- name: Checkout code
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
- name: Check go mod
2222
run: |
2323
go mod tidy
@@ -26,7 +26,7 @@ jobs:
2626
golangci-lint:
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v6
3030
- name: lint
3131
uses: golangci/golangci-lint-action@v9.2.0
3232
with:
@@ -36,7 +36,7 @@ jobs:
3636
needs: golangci-lint # run after golangci-lint action to not produce duplicated errors
3737
runs-on: windows-latest
3838
steps:
39-
- uses: actions/checkout@v5
39+
- uses: actions/checkout@v6
4040
- name: Install Go
4141
uses: actions/setup-go@v6
4242
with:
@@ -48,7 +48,7 @@ jobs:
4848
needs: golangci-lint # run after golangci-lint action to not produce duplicated errors
4949
runs-on: macos-latest
5050
steps:
51-
- uses: actions/checkout@v5
51+
- uses: actions/checkout@v6
5252
- name: Install Go
5353
uses: actions/setup-go@v6
5454
with:
@@ -63,7 +63,7 @@ jobs:
6363
golang:
6464
- 1.18
6565
steps:
66-
- uses: actions/checkout@v5
66+
- uses: actions/checkout@v6
6767
- name: Install Go
6868
uses: actions/setup-go@v6
6969
with:
@@ -102,7 +102,7 @@ jobs:
102102
cover-${{ runner.os }}-go-
103103
104104
- name: Checkout code
105-
uses: actions/checkout@v5
105+
uses: actions/checkout@v6
106106

107107
- name: Run tests with coverage
108108
run: make coverage

0 commit comments

Comments
 (0)