From 84a9205e3aaae3c0009f34cf295fa3ce4b59945a Mon Sep 17 00:00:00 2001 From: Antonio Pagano <645522+paganotoni@users.noreply.github.com> Date: Thu, 31 Oct 2019 11:08:48 -0500 Subject: [PATCH] Updates GolangCI lint It seems that GolangCI-lint has some issues with Go 1.13 mentioned [here](https://github.com/golangci/golangci-lint/issues/659). This PR updates the version we're using. --- Dockerfile.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.build b/Dockerfile.build index 8a5b6d84a..76b095cc4 100644 --- a/Dockerfile.build +++ b/Dockerfile.build @@ -26,7 +26,7 @@ RUN go get -tags sqlite -v -u github.com/gobuffalo/pop \ && rm -rf $GOPATH/src && mkdir -p $BP # Install golangci -RUN curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.16.0 +RUN curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.21.0 WORKDIR $BP