From 029bf5b260c91dc69622fd95f123784f0e79d5c3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Mar 2025 00:47:57 +0000 Subject: [PATCH] build(deps): bump golangci/golangci-lint-action from 6 to 7 Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 6 to 7. - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](https://github.com/golangci/golangci-lint-action/compare/v6...v7) --- updated-dependencies: - dependency-name: golangci/golangci-lint-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/linters.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 0999a471..091b5d2a 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -29,13 +29,12 @@ jobs: - uses: actions/setup-go@v5 with: go-version: "1.24.x" - - uses: golangci/golangci-lint-action@v6 + - uses: golangci/golangci-lint-action@v7 with: args: > --timeout 10m - --exclude-dirs=tests - --disable errcheck - --enable sqlclosecheck,misspell,gofmt,goimports,whitespace,gocritic + --disable errcheck,staticcheck + --enable sqlclosecheck,misspell,whitespace,gocritic - uses: dominikh/staticcheck-action@v1.3.1 with: version: "latest"