Update Golangci-lint to 1.26.0

This commit is contained in:
Quentin McGaw
2020-05-08 00:30:42 +00:00
parent 6a3c280f30
commit ea79ca53ea
2 changed files with 2 additions and 2 deletions

View File

@@ -46,4 +46,4 @@ run:
- .github
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

@@ -5,7 +5,7 @@ FROM alpine:${ALPINE_VERSION} AS alpine
RUN apk --update add ca-certificates tzdata
FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS builder
ARG GOLANGCI_LINT_VERSION=v1.24.0
ARG GOLANGCI_LINT_VERSION=v1.26.0
RUN apk --update add git
ENV CGO_ENABLED=0
RUN wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s ${GOLANGCI_LINT_VERSION}