-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change golangci-lint version to the latest and Fix docker build error (…
…#1435) * change golangci-lint version to the latest(1.42.1) Signed-off-by: hlts2 <[email protected]> * change ubuntu version Signed-off-by: hlts2 <[email protected]> * change ubuntu version of agent dockerfile Signed-off-by: hlts2 <[email protected]> * fix ngt image actions workflow to be able to hook changes in dockerfile Signed-off-by: hlts2 <[email protected]> Co-authored-by: Kevin Diu <[email protected]>
- Loading branch information
Showing
4 changed files
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ ARG MAINTAINER="vdaas.org vald team <[email protected]>" | |
|
||
FROM golang:${GO_VERSION} AS golang | ||
|
||
FROM ubuntu:devel AS builder | ||
FROM ubuntu:hirsute AS builder | ||
|
||
ARG UPX_OPTIONS | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,9 +19,9 @@ ARG MAINTAINER="vdaas.org vald team <[email protected]>" | |
|
||
FROM golang:${GO_VERSION} AS golang | ||
|
||
FROM ubuntu:devel AS builder | ||
FROM ubuntu:hirsute AS builder | ||
ARG PROTOBUF_VERSION=3.14.0 | ||
ARG GOLANGCI_LINT_VERSION=v1.36.0 | ||
ARG GOLANGCI_LINT_VERSION=v1.42.1 | ||
ARG REVIEWDOG_VERSION=v0.11.0 | ||
|
||
LABEL maintainer "${MAINTAINER}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,9 +16,9 @@ | |
|
||
ARG MAINTAINER="vdaas.org vald team <[email protected]>" | ||
|
||
FROM ubuntu:devel AS builder | ||
FROM ubuntu:hirsute AS builder | ||
ARG PROTOBUF_VERSION=3.14.0 | ||
ARG GOLANGCI_LINT_VERSION=v1.36.0 | ||
ARG GOLANGCI_LINT_VERSION=v1.42.1 | ||
ARG REVIEWDOG_VERSION=v0.11.0 | ||
ARG YQ_VERSION=4.5.0 | ||
|
||
|