From 90cc1ab446b943def3125a326f5bcaf7ad17da83 Mon Sep 17 00:00:00 2001 From: Shreyas Rao <42259948+shreyas-s-rao@users.noreply.github.com> Date: Sat, 25 Jan 2025 16:13:59 +0530 Subject: [PATCH] Update golang version to 1.23.5 (#986) --- .ci/pipeline_definitions | 8 ++++---- Dockerfile | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.ci/pipeline_definitions b/.ci/pipeline_definitions index c1b8db3c1..f795f5968 100644 --- a/.ci/pipeline_definitions +++ b/.ci/pipeline_definitions @@ -42,13 +42,13 @@ etcd-druid: teamname: 'gardener/etcd-druid-maintainers' steps: check: - image: 'golang:1.23.4' + image: 'golang:1.23.5' test: - image: 'golang:1.23.4' + image: 'golang:1.23.5' test_integration: - image: 'golang:1.23.4' + image: 'golang:1.23.5' build: - image: 'golang:1.23.4' + image: 'golang:1.23.5' output_dir: 'binary' jobs: diff --git a/Dockerfile b/Dockerfile index 2e439d56b..4cd51b085 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build the manager binary -FROM golang:1.23.4 as builder +FROM golang:1.23.5 as builder WORKDIR /go/src/github.com/gardener/etcd-druid COPY . .