From 3dfa42de598a353a4e1298dc2e4498703d92b69b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=BE=D0=BD=D0=B4=D1=80=D0=B0=D1=82=D0=B5=D0=BD?= =?UTF-8?q?=D0=BA=D0=BE=20=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4?= =?UTF-8?q?=D1=80?= Date: Tue, 5 Dec 2023 22:15:05 +0300 Subject: [PATCH] lint: Update golangci-lint version -> v1.55.2 --- hw12_13_14_15_calendar/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw12_13_14_15_calendar/Makefile b/hw12_13_14_15_calendar/Makefile index 73ebdb0..0b3fe0c 100644 --- a/hw12_13_14_15_calendar/Makefile +++ b/hw12_13_14_15_calendar/Makefile @@ -26,7 +26,7 @@ test: go test -race ./internal/... install-lint-deps: - (which golangci-lint > /dev/null) || curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell go env GOPATH)/bin v1.50.1 + (which golangci-lint > /dev/null) || curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell go env GOPATH)/bin v1.55.2 lint: install-lint-deps golangci-lint run ./...