GolangCi-lint 1.

26.0
This commit is contained in:
Quentin McGaw
2020-05-05 18:01:12 +00:00
parent d73765a5f5
commit c39affeb12
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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 .