From c39affeb1298ecded18f2b4f032cd279e92ee88f Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Tue, 5 May 2020 18:01:12 +0000 Subject: [PATCH] GolangCi-lint 1. 26.0 --- .golangci.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index b40cdfaa..6f55e808 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -47,4 +47,4 @@ run: - postgres service: - golangci-lint-version: 1.24.x # use the fixed version to not introduce new linters unexpectedly + golangci-lint-version: 1.26.x # use the fixed version to not introduce new linters unexpectedly diff --git a/Dockerfile b/Dockerfile index 3e5a1c70..4695e75e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ARG GO_VERSION=1.14 FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS builder RUN apk --update add git ENV CGO_ENABLED=0 -ARG GOLANGCI_LINT_VERSION=v1.25.0 +ARG GOLANGCI_LINT_VERSION=v1.26.0 RUN wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s ${GOLANGCI_LINT_VERSION} WORKDIR /tmp/gobuild COPY .golangci.yml .