From e592234833bd2b56312542ddf8f054169c3feb67 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 Jan 2026 02:54:01 +0000 Subject: [PATCH 1/2] Bump golangci/golangci-lint from v2.7.2 to v2.8.0 Bumps golangci/golangci-lint from v2.7.2 to v2.8.0. --- updated-dependencies: - dependency-name: golangci/golangci-lint dependency-version: v2.8.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- dev.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev.dockerfile b/dev.dockerfile index 8f4acdd..60dcb6b 100644 --- a/dev.dockerfile +++ b/dev.dockerfile @@ -2,7 +2,7 @@ FROM golang:1.25.5 AS go # update together with .github/workflows/ci.yml -FROM golangci/golangci-lint:v2.7.2 AS linter +FROM golangci/golangci-lint:v2.8.0 AS linter FROM go AS dev ENV INSIDE_DEV_CONTAINER=1 From a96aaa2cecafe556c4b83dbd087f4dd08866a58f Mon Sep 17 00:00:00 2001 From: Marat Reimers Date: Thu, 8 Jan 2026 16:47:31 +0100 Subject: [PATCH 2/2] Update ci config --- .github/workflows/ci.yml | 4 ++-- .golangci.yml | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 78a19cd..363a109 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,7 +65,7 @@ jobs: go-version: "1.25.5" # update together with dev.dockerfile - uses: golangci/golangci-lint-action@v9 with: - version: "v2.7.2" # update together with dev.dockerfile + version: "v2.8.0" # update together with dev.dockerfile lint-latest-deps: runs-on: ubuntu-latest @@ -77,7 +77,7 @@ jobs: - run: make apply-latest-deps - uses: golangci/golangci-lint-action@v9 with: - version: "v2.7.2" # update together with dev.dockerfile + version: "v2.8.0" # update together with dev.dockerfile check-tidy: name: go mod tidy diff --git a/.golangci.yml b/.golangci.yml index dce306a..8e65a6e 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,4 +1,4 @@ -# Based on https://gist.github.com/maratori/47a4d00457a92aa426dbd48a18776322 +# Based on https://github.com/maratori/golangci-lint-config version: "2" @@ -311,6 +311,9 @@ linters: # Assert no unused link in godocs. # https://github.com/godoc-lint/godoc-lint?tab=readme-ov-file#no-unused-link - no-unused-link + # Require proper doc links to standard library declarations where applicable. + # https://github.com/godoc-lint/godoc-lint?tab=readme-ov-file#require-stdlib-doclink + - require-stdlib-doclink govet: # Enable all analyzers.