From c52a730424b6dc5a59f9f2f1dfbd122eb9e7b914 Mon Sep 17 00:00:00 2001 From: Saketh Kalaga <51327242+renormalize@users.noreply.github.com> Date: Tue, 12 Nov 2024 14:40:15 +0530 Subject: [PATCH] Upgrade the Go toolchain to `go1.23.3`. (#913) --- .ci/pipeline_definitions | 8 ++++---- Dockerfile | 2 +- go.mod | 4 +--- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.ci/pipeline_definitions b/.ci/pipeline_definitions index 6ff2632dc..e5a951ee7 100644 --- a/.ci/pipeline_definitions +++ b/.ci/pipeline_definitions @@ -35,13 +35,13 @@ etcd-druid: teamname: 'gardener/etcd-druid-maintainers' steps: check: - image: 'golang:1.22.4' + image: 'golang:1.23.3' test: - image: 'golang:1.22.4' + image: 'golang:1.23.3' test_integration: - image: 'golang:1.22.4' + image: 'golang:1.23.3' build: - image: 'golang:1.22.4' + image: 'golang:1.23.3' output_dir: 'binary' jobs: diff --git a/Dockerfile b/Dockerfile index a8ac7d35d..842fedacb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build the manager binary -FROM golang:1.22.4 as builder +FROM golang:1.23.3 as builder WORKDIR /go/src/github.com/gardener/etcd-druid COPY . . diff --git a/go.mod b/go.mod index 11b7644d0..29153d8fe 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,6 @@ module github.com/gardener/etcd-druid -go 1.22.0 - -toolchain go1.22.6 +go 1.23.3 require ( github.com/gardener/etcd-backup-restore v0.29.0