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
1 change: 1 addition & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ updates:
- package-ecosystem: "docker"
directories:
- "/test/e2e/otlp-sink/telemetrymatcher"
- "/test/e2e/dash0-api-mock"
schedule:
interval: "daily"
time: "07:18"
Expand Down
2 changes: 1 addition & 1 deletion images/collector/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SPDX-FileCopyrightText: Copyright 2024 Dash0 Inc.
# SPDX-License-Identifier: Apache-2.0

FROM --platform=${BUILDPLATFORM} golang:1.25.5-alpine3.22 AS builder
FROM --platform=${BUILDPLATFORM} golang:1.25.5-alpine3.23 AS builder

RUN apk add --update git make yq && apk cache clean

Expand Down
2 changes: 1 addition & 1 deletion images/configreloader/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# Note: This Dockerfile expects dash0-operator/images as the build context.

FROM --platform=${BUILDPLATFORM} golang:1.25.5-alpine3.22 AS builder
FROM --platform=${BUILDPLATFORM} golang:1.25.5-alpine3.23 AS builder

WORKDIR /usr/local/go/src/configreloader

Expand Down
2 changes: 1 addition & 1 deletion images/filelogoffsetsync/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# Note: This Dockerfile expects dash0-operator/images as the build context.

FROM --platform=${BUILDPLATFORM} golang:1.25.5-alpine3.22 AS builder
FROM --platform=${BUILDPLATFORM} golang:1.25.5-alpine3.23 AS builder

WORKDIR /usr/local/go/src/filelogoffsetsync

Expand Down
2 changes: 1 addition & 1 deletion images/instrumentation/injector/test/scripts/test-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ for arch in "${all_architectures[@]}"; do
if [[ "$libc_flavor" = "glibc" ]]; then
no_environ_base_image="golang:1.25.5-trixie"
elif [[ "$libc_flavor" = "musl" ]]; then
no_environ_base_image="golang:1.25.5-alpine3.22"
no_environ_base_image="golang:1.25.5-alpine3.23"
fi
echo "building the no_environ_symbol test app for CPU architecture $arch [GOARCH=$goarch] and libc flavor $libc_flavor (base image: $no_environ_base_image)"
ARCH="$arch" \
Expand Down
2 changes: 1 addition & 1 deletion images/instrumentation/test/distroless-static/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# SPDX-License-Identifier: Apache-2.0

ARG instrumentation_image=dash0-instrumentation:latest
ARG base_image_build=golang:1.25.5-alpine3.22
ARG base_image_build=golang:1.25.5-alpine3.23
ARG base_image_run=scratch

FROM ${instrumentation_image} AS init
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# SPDX-License-Identifier: Apache-2.0

# one pair of build and run base images per line
golang:1.25.5-alpine3.22,scratch
golang:1.25.5-alpine3.23,scratch
2 changes: 1 addition & 1 deletion test/e2e/dash0-api-mock/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SPDX-FileCopyrightText: Copyright 2025 Dash0 Inc.
# SPDX-License-Identifier: Apache-2.0

FROM --platform=${BUILDPLATFORM} golang:1.25.5-alpine3.22 AS builder
FROM --platform=${BUILDPLATFORM} golang:1.25.5-alpine3.23 AS builder

WORKDIR /usr/local/go/dash0_api_mock

Expand Down
2 changes: 1 addition & 1 deletion test/e2e/otlp-sink/telemetrymatcher/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# Note: This Dockerfile expects test/e2e as the build context.

FROM --platform=${BUILDPLATFORM} golang:1.25.5-alpine3.22 AS builder
FROM --platform=${BUILDPLATFORM} golang:1.25.5-alpine3.23 AS builder

WORKDIR /usr/local/go/src/telemetrymatcher

Expand Down
Loading