Skip to content
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 Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@

# lint runs all linters for golang
lint:
# renovate: datasource=docker packageName=golangci-lint
# renovate: datasource=docker packageName=golangci/golangci-lint
ARG golangci_lint_version=2.3.0
FROM golangci/golangci-lint:v$golangci_lint_version-alpine
WORKDIR /intl
Expand All @@ -77,7 +77,7 @@
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 3
--mount=type=cache,id=go-mod,target=/go/pkg/mod \
--mount=type=cache,id=go-build,target=/root/.cache/go-build \
--mount=type=cache,target=/root/.cache/golangci_lint \
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module go.expect.digital/intl

go 1.23.0

toolchain go1.24.5
toolchain go1.25.0

require (
github.com/yaa110/go-persian-calendar v1.2.2
Expand Down
Loading