From 7d3c952e8b4caacf86bcbea6b2ae9ffeb493841f Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Mon, 8 Aug 2022 08:27:41 +0000 Subject: [PATCH] arrow_up: Bump golangci-lint version --- Earthfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Earthfile b/Earthfile index a6b6198..1f61eb6 100644 --- a/Earthfile +++ b/Earthfile @@ -18,6 +18,7 @@ ARG COSIGN_REPOSITORY=raccos/releases-teal ARG COSIGN_EXPERIMENTAL=0 ARG CGO_ENABLED=0 ARG ELEMENTAL_IMAGE=quay.io/costoolkit/elemental-cli:v0.0.15-8a78e6b +ARG GOLINT_VERSION=1.47.3 all: @@ -93,7 +94,8 @@ dist: lint: FROM golang:alpine - RUN wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.46.2 + ARG GOLINT_VERSION + RUN wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v$GOLINT_VERSION WORKDIR /build COPY . . RUN golangci-lint run