Skip to content
Open
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 Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@
# This cache is private because golangci-lint doesn't support concurrent runs.
CACHE --id go-lint --sharing private /root/.cache/golangci-lint
CACHE --id go-build --sharing shared /root/.cache/go-build
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin ${GOLANGCI_LINT_VERSION}

Check failure on line 287 in Earthfile

View workflow job for this annotation

GitHub Actions / lint

Error

The command RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin ${GOLANGCI_LINT_VERSION} did not complete successfully. Exit code 1
COPY .golangci.yml .
COPY --dir cmd/ internal/ test/ .
RUN golangci-lint run --fix
Expand All @@ -306,7 +306,7 @@

# kubectl-setup is used by other targets to setup kubectl.
kubectl-setup:
ARG KUBECTL_VERSION=v1.34.2
ARG KUBECTL_VERSION=v1.34.3
ARG NATIVEPLATFORM
ARG TARGETOS
ARG TARGETARCH
Expand Down
Loading