From fd2677ce477b240c9b8c6df9c7f3ce9407f932cf Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 13:02:40 +0000 Subject: [PATCH] Update dependency golangci/golangci-lint to v1.55.0 --- .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 f4559c0dc..338711133 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ on: env: # Common versions GO_VERSION: '1.21.3' - GOLANGCI_VERSION: 'v1.54.2' + GOLANGCI_VERSION: 'v1.55.0' jobs: check-diff: diff --git a/Makefile b/Makefile index 5fdc297dc..304d3ebac 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,7 @@ GO_TEST_PARALLEL := $(shell echo $$(( $(NPROCS) / 2 ))) GO_LDFLAGS += -X $(GO_PROJECT)/pkg/version.Version=$(VERSION) GO_SUBDIRS += pkg apis GO111MODULE = on -GOLANGCILINT_VERSION = 1.54.2 +GOLANGCILINT_VERSION = 1.55.0 -include build/makelib/golang.mk # ====================================================================================