Skip to content
This repository was archived by the owner on Apr 11, 2024. It is now read-only.

Commit 7a3f899

Browse files
authored
fix: fix golangci-lint download URL + update version (#128)
1 parent 6166233 commit 7a3f899

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ WHITE := $(shell tput -Txterm setaf 7)
1313
CYAN := $(shell tput -Txterm setaf 6)
1414
RESET := $(shell tput -Txterm sgr0)
1515

16-
GOLANGCILINT_VERSION = 1.40.1
16+
GOLANGCILINT_VERSION = 1.46.2
1717

1818
.PHONY: all test build vendor
1919

@@ -54,4 +54,4 @@ $(TOOLS_DIR):
5454
mkdir -p $(TOOLS_DIR)
5555

5656
$(TOOLS_DIR)/golangci-lint: $(TOOLS_DIR)
57-
@wget -O - -q https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | BINDIR=$(@D) sh -s v$(GOLANGCILINT_VERSION) > /dev/null 2>&1
57+
@wget -O - -q https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | BINDIR=$(@D) sh -s v$(GOLANGCILINT_VERSION) > /dev/null 2>&1

0 commit comments

Comments
 (0)