From 49b28b6536f3569d7a641ed8d5e4ac9f5455ef23 Mon Sep 17 00:00:00 2001 From: Daniel Carrillo Date: Sat, 19 Mar 2022 19:02:41 +0100 Subject: [PATCH] Update golangci-lint and shadow --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 66b6db6..1139443 100644 --- a/Makefile +++ b/Makefile @@ -16,11 +16,11 @@ integration-test: .PHONY: install-tools install-tools: @command golangci-lint > /dev/null 2>&1; if [ $$? -ne 0 ]; then \ - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GOPATH)/bin v1.43.0; \ + curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GOPATH)/bin v1.45.0; \ fi @command $(GOPATH)/shadow > /dev/null 2>&1; if [ $$? -ne 0 ]; then \ - go install golang.org/x/tools/go/analysis/passes/shadow/cmd/shadow@v0.1.7; \ + go install golang.org/x/tools/go/analysis/passes/shadow/cmd/shadow@v0.1.10; \ fi @command $(GOPATH)/golines > /dev/null 2>&1; if [ $$? -ne 0 ]; then \