We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be12d6c commit aa82500Copy full SHA for aa82500
.github/workflows/ci.yml
@@ -9,7 +9,7 @@ jobs:
9
- name: Checkout
10
uses: actions/checkout@v2
11
- name: Lint code
12
- run: DOCKER_BUILDKIT=1 make lint
+ uses: golangci/golangci-lint-action@v2
13
- name: Check license
14
run: DOCKER_BUILDKIT=1 make check-license
15
ci/Dockerfile
@@ -16,7 +16,7 @@ FROM golang:1.17
16
17
WORKDIR /go/src
18
19
-ARG GOLANGCILINT_VERSION=v1.24.0
+ARG GOLANGCILINT_VERSION=v1.44.1
20
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin ${GOLANGCILINT_VERSION}
21
RUN go get -v -u github.com/kunalkushwaha/ltag && rm -rf /go/src/github.com/kunalkushwaha
22
0 commit comments