From 33cae13af0af2ac966e24551b952a06044d0b892 Mon Sep 17 00:00:00 2001 From: Marvin Preuss Date: Tue, 17 May 2022 13:08:41 +0200 Subject: [PATCH] chore(make): goreleaser,golangci-lint version bump --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index c193df9..10bf63c 100644 --- a/Makefile +++ b/Makefile @@ -6,8 +6,8 @@ CACHE_DIR := $(ROOT_DIR)/.cache export GOBIN := $(ROOT_DIR)/.gobin export PATH := $(GOBIN):$(PATH) -GORELEASER := $(GO) run github.com/goreleaser/goreleaser@v1.7.0 -GOLANGCI_LINT := $(GO) run github.com/golangci/golangci-lint/cmd/golangci-lint@v1.45.2 +GORELEASER := $(GO) run github.com/goreleaser/goreleaser@v1.8.3 +GOLANGCI_LINT := $(GO) run github.com/golangci/golangci-lint/cmd/golangci-lint@v1.46.1 GOTESTSUM := $(GO) run gotest.tools/gotestsum@v1.7.0 @@ -47,7 +47,6 @@ coverage: test lint: $(GOLANGCI_LINT) run \ --enable-all \ - --disable=godox,varnamelen,exhaustivestruct \ --timeout 10m .PHONY: tidy