Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade golangci-lint to v1.52.2 #429

Merged
merged 1 commit into from
Apr 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile.amd64
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ RUN cp -a $GOROOT $GOCGO && \
go install -v std && \
rm -rf /go/src/* /root/.cache

ENV GO_LINT_VERSION=v1.50.1
ENV GO_LINT_VERSION=v1.52.2

# Install go programs that we rely on
RUN \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.arm64
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ RUN cp -a $GOROOT $GOCGO && \
go install -v std && \
rm -rf /go/src/* /root/.cache

ENV GO_LINT_VERSION=v1.50.1
ENV GO_LINT_VERSION=v1.52.2

# Install go programs that we rely on
RUN \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.armv7
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ RUN go install -v std
RUN go install github.com/onsi/ginkgo/[email protected]

# Install linting tools
ENV GO_LINT_VERSION=v1.50.1
ENV GO_LINT_VERSION=v1.52.2
RUN \
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin $GO_LINT_VERSION && \
golangci-lint --version
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.ppc64le
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ RUN go install -v std
RUN go install github.com/onsi/ginkgo/[email protected]

# Install linting tools
ENV GO_LINT_VERSION=v1.50.1
ENV GO_LINT_VERSION=v1.52.2
RUN \
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin $GO_LINT_VERSION && \
golangci-lint --version
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.s390x
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ RUN go install -v std
RUN go install github.com/onsi/ginkgo/[email protected]

# Install linting tools
ENV GO_LINT_VERSION=v1.50.1
ENV GO_LINT_VERSION=v1.52.2
RUN \
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin $GO_LINT_VERSION && \
golangci-lint --version
Expand Down