From 249be1a723e73720e377f94c1a27eb22cc167764 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 10:30:21 +0000 Subject: [PATCH] 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](https://github.com/actions/checkout/compare/v5...v6) Updates `golangci/golangci-lint-action` from 8 to 9 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](https://github.com/golangci/golangci-lint-action/compare/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] --- .github/workflows/golang.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/golang.yaml b/.github/workflows/golang.yaml index ba131cc..cfb0ec2 100644 --- a/.github/workflows/golang.yaml +++ b/.github/workflows/golang.yaml @@ -21,7 +21,7 @@ jobs: with: go-version: '1.24.1' cache-dependency-path: "**/*.sum" - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - run: go mod verify - run: go test ./... @@ -33,7 +33,7 @@ jobs: with: go-version: '1.24.1' cache-dependency-path: "**/*.sum" - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - run: go mod verify - run: go mod download - run: cd fuzz && go test ./... @@ -46,7 +46,7 @@ jobs: with: go-version: '1.24.1' cache-dependency-path: "**/*.sum" - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - run: go mod verify - run: go mod download - run: cd integration && go test ./... @@ -63,7 +63,7 @@ jobs: with: go-version: '1.24.1' cache-dependency-path: "**/*.sum" - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - run: go vet ./... - run: cd fuzz && go vet ./... - run: cd integration && go vet ./... @@ -80,15 +80,15 @@ jobs: with: go-version: '1.24.1' cache-dependency-path: "**/*.sum" - - uses: actions/checkout@v5 - - uses: golangci/golangci-lint-action@v8 + - uses: actions/checkout@v6 + - uses: golangci/golangci-lint-action@v9 with: version: 'v2.1.0' - - uses: golangci/golangci-lint-action@v8 + - uses: golangci/golangci-lint-action@v9 with: working-directory: 'fuzz' version: 'v2.1.0' - - uses: golangci/golangci-lint-action@v8 + - uses: golangci/golangci-lint-action@v9 with: working-directory: 'integration' version: 'v2.1.0'