Skip to content
Open
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 .earthly/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ services:
restart: always

jaeger:
image: jaegertracing/all-in-one:1.74.0
image: cr.jaegertracing.io/jaegertracing/jaeger:2.11.0
container_name: jaeger
hostname: jaeger
networks:
Expand Down
6 changes: 3 additions & 3 deletions Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@
WORKDIR translate
COPY +go/translate .
COPY .golangci.yml .
RUN \

Check failure on line 160 in Earthfile

View workflow job for this annotation

GitHub Actions / check

Error

The command RUN golangci-lint run --timeout 3m did not complete successfully. Exit code 1
--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 Expand Up @@ -279,9 +279,9 @@
# jaeger is helper target for all-in-one image, it removes the need
# to download the correct jaeger image on every build
jaeger:
# renovate datasource=docker packageName=jaegertracing/all-in-one
ARG jaeger_version=1.47
FROM jaegertracing/all-in-one:$jaeger_version
# renovate datasource=docker packageName=cr.jaegertracing.io/jaegertracing/jaeger
ARG jaeger_version=2.11.0
FROM cr.jaegertracing.io/jaegertracing/jaeger:$jaeger_version
SAVE ARTIFACT /go/bin/all-in-one-linux jaeger

# image-all-in-one builds all-in-one image.
Expand Down
Loading