diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d05c2f1..6dfd46a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ on: env: # Common versions GO_VERSION: '1.24.8' - GOLANGCI_VERSION: 'v2.4.0' + GOLANGCI_VERSION: 'v2.8.0' jobs: check-diff: diff --git a/Makefile b/Makefile index f502ab7..2beaf07 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.4.0 +GOLANGCILINT_VERSION = 2.8.0 GO_LINT_ARGS ?= "--fix" -include build/makelib/golang.mk