From 35fcbb02d1814ed0671d0c2d72d52d079bf326ad Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Jan 2025 19:05:38 +0000 Subject: [PATCH] fix(deps): bump golang from 1.23.1-bullseye to 1.23.4-bullseye in /hack Bumps golang from 1.23.1-bullseye to 1.23.4-bullseye. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- hack/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hack/Dockerfile b/hack/Dockerfile index b8f94ede79..3f39445202 100644 --- a/hack/Dockerfile +++ b/hack/Dockerfile @@ -14,7 +14,7 @@ # deps builds binaries in an isolated environment to avoid # funkiness in the hermetic build. -FROM golang:1.23.1-bullseye as deps +FROM golang:1.23.4-bullseye as deps WORKDIR /workspace # Have to clone and install this as the go.mod uses replace directives. # RUN git clone --depth 1 --branch v0.53.1 https://github.com/prometheus-operator/prometheus-operator \ @@ -30,7 +30,7 @@ RUN bingo -v get # TODO(bwplotka): It takes 177s in docker container with colima # hermetic is a lite copy of the repo resources used in building # testing in a hermetic, idempotent, and reproducable environment. -FROM golang:1.23.1-bullseye AS hermetic +FROM golang:1.23.4-bullseye AS hermetic COPY --from=deps /go/bin /go/bin ARG RUNCMD='go fmt ./...' @@ -74,7 +74,7 @@ COPY --from=hermetic /workspace/e2e e2e COPY --from=hermetic /workspace/vendor vendor.tmp ## kindtest image for running tests against kind cluster in hermetic environment. -FROM golang:1.23.1-bullseye as buildbase +FROM golang:1.23.4-bullseye as buildbase FROM docker:27.2-cli as docker FROM debian:stable-slim as kindtest