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 @@ -70,14 +70,14 @@
# lint runs all linters for golang
lint:
# renovate: datasource=docker packageName=golangci/golangci-lint
ARG golangci_lint_version=2.7.2
ARG golangci_lint_version=2.8.0
FROM golangci/golangci-lint:v$golangci_lint_version-alpine
WORKDIR /intl
COPY go.mod go.sum *.go .golangci.yml .
COPY --dir internal .
COPY +data/data.go internal/cldr/
COPY +testdata/tests.json .
RUN \

Check failure on line 80 in Earthfile

View workflow job for this annotation

GitHub Actions / check (1.25)

Error

The command RUN golangci-lint run did not complete successfully. Exit code 1
--mount type=cache,sharing=shared,id=go-mod,target=/go/pkg/mod \
--mount type=cache,sharing=shared,id=go-build,target=/root/.cache/go-build \
--mount type=cache,sharing=shared,target=/root/.cache/golangci_lint \
Expand Down
Loading