Skip to content

Commit

Permalink
Fix lint CI
Browse files Browse the repository at this point in the history
This will fix the lint CI failing as some issue
in installing latest golangci-lint

Now it will install the last stable release
I have followed golangci/golangci-lint#1087
to fix this
  • Loading branch information
piyush-garg committed May 15, 2020
1 parent add370f commit 2bdf7ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make/lint.mk
Expand Up @@ -33,7 +33,7 @@ $(GOLANGCI_LINT_BIN):
# see: https://github.com/golangci/golangci-lint/issues/658
$(Q) GO111MODULE=on \
GOBIN=$(shell pwd)/out \
go get -u github.com/golangci/golangci-lint/cmd/golangci-lint
go get -u github.com/golangci/golangci-lint/cmd/golangci-lint@v1.24.0

# re-enable this when the fix for the issue is released
#$(Q)curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b ./out v1.16.0
Expand Down

0 comments on commit 2bdf7ab

Please sign in to comment.