From 7bcd5b9c2fcfb7d2b882dc93cfa65b11bb8bc89c Mon Sep 17 00:00:00 2001 From: Saketh Kalaga <51327242+renormalize@users.noreply.github.com> Date: Thu, 27 Feb 2025 10:54:44 +0530 Subject: [PATCH] Upgrade to `go1.23.6`. (#1000) --- .ci/pipeline_definitions | 8 ++++---- Dockerfile | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.ci/pipeline_definitions b/.ci/pipeline_definitions index bdac855f9..c2d912e09 100644 --- a/.ci/pipeline_definitions +++ b/.ci/pipeline_definitions @@ -54,13 +54,13 @@ etcd-druid: teamname: 'gardener/etcd-druid-maintainers' steps: check: - image: 'golang:1.23.5' + image: 'golang:1.23.6' test: - image: 'golang:1.23.5' + image: 'golang:1.23.6' test_integration: - image: 'golang:1.23.5' + image: 'golang:1.23.6' build: - image: 'golang:1.23.5' + image: 'golang:1.23.6' output_dir: 'binary' jobs: diff --git a/Dockerfile b/Dockerfile index 4cd51b085..7106c242d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build the manager binary -FROM golang:1.23.5 as builder +FROM golang:1.23.6 as builder WORKDIR /go/src/github.com/gardener/etcd-druid COPY . .