From d04dbbc7b5dd67d733bb70cf7ae9e8af91dfb494 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Wed, 4 Sep 2024 14:39:10 +0200 Subject: [PATCH] Makefile: update golangci-lint from v1.60.1 to v1.60.3 See https://github.com/golangci/golangci-lint/releases/tag/v1.60.3 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3c9ba1d55f..812b715dd2 100644 --- a/Makefile +++ b/Makefile @@ -235,7 +235,7 @@ golangci-lint: install-golangci-lint golangci-lint run install-golangci-lint: - which golangci-lint || curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell go env GOPATH)/bin v1.60.1 + which golangci-lint || curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell go env GOPATH)/bin v1.60.3 remove-golangci-lint: rm -rf `which golangci-lint`