Skip to content

Commit 249be1a

Browse files
Bump the github-actions group with 2 updates
Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action). Updates `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) Updates `golangci/golangci-lint-action` from 8 to 9 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v8...v9) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: golangci/golangci-lint-action dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent ea923ad commit 249be1a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/golang.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
go-version: '1.24.1'
2323
cache-dependency-path: "**/*.sum"
24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525
- run: go mod verify
2626
- run: go test ./...
2727

@@ -33,7 +33,7 @@ jobs:
3333
with:
3434
go-version: '1.24.1'
3535
cache-dependency-path: "**/*.sum"
36-
- uses: actions/checkout@v5
36+
- uses: actions/checkout@v6
3737
- run: go mod verify
3838
- run: go mod download
3939
- run: cd fuzz && go test ./...
@@ -46,7 +46,7 @@ jobs:
4646
with:
4747
go-version: '1.24.1'
4848
cache-dependency-path: "**/*.sum"
49-
- uses: actions/checkout@v5
49+
- uses: actions/checkout@v6
5050
- run: go mod verify
5151
- run: go mod download
5252
- run: cd integration && go test ./...
@@ -63,7 +63,7 @@ jobs:
6363
with:
6464
go-version: '1.24.1'
6565
cache-dependency-path: "**/*.sum"
66-
- uses: actions/checkout@v5
66+
- uses: actions/checkout@v6
6767
- run: go vet ./...
6868
- run: cd fuzz && go vet ./...
6969
- run: cd integration && go vet ./...
@@ -80,15 +80,15 @@ jobs:
8080
with:
8181
go-version: '1.24.1'
8282
cache-dependency-path: "**/*.sum"
83-
- uses: actions/checkout@v5
84-
- uses: golangci/golangci-lint-action@v8
83+
- uses: actions/checkout@v6
84+
- uses: golangci/golangci-lint-action@v9
8585
with:
8686
version: 'v2.1.0'
87-
- uses: golangci/golangci-lint-action@v8
87+
- uses: golangci/golangci-lint-action@v9
8888
with:
8989
working-directory: 'fuzz'
9090
version: 'v2.1.0'
91-
- uses: golangci/golangci-lint-action@v8
91+
- uses: golangci/golangci-lint-action@v9
9292
with:
9393
working-directory: 'integration'
9494
version: 'v2.1.0'

0 commit comments

Comments
 (0)