From bad8315f3bfa077da092801df37e3c20fa6bfc18 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 28 Aug 2026 02:34:46 +0000 Subject: [PATCH] Update dependency golangci/golangci-lint to v2.13.2 --- .github/workflows/ci.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2512137..c3d1484 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ on: env: # Common versions GO_VERSION: '1.26.6' - GOLANGCI_VERSION: 'v2.13.1' + GOLANGCI_VERSION: 'v2.13.2' jobs: check-diff: diff --git a/Makefile b/Makefile index 3cf07e8..39851aa 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ GO_TEST_PARALLEL := $(shell echo $$(( $(NPROCS) / 2 ))) GO_LDFLAGS += -X $(GO_PROJECT)/pkg/version.Version=$(VERSION) GO_SUBDIRS += errors proto resource response request GO111MODULE = on -GOLANGCILINT_VERSION = 2.13.1 +GOLANGCILINT_VERSION = 2.13.2 GO_LINT_ARGS ?= "--fix" -include build/makelib/golang.mk