diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a847039..645d329 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ on: env: # Common versions GO_VERSION: '1.23.1' - GOLANGCI_VERSION: 'v1.60.3' + GOLANGCI_VERSION: 'v1.61.0' jobs: check-diff: diff --git a/Makefile b/Makefile index 50c2832..6ceb51a 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 = 1.60.3 +GOLANGCILINT_VERSION = 1.61.0 GO_LINT_ARGS ?= "--fix" -include build/makelib/golang.mk