From 7c557d2610ccb2ee563061597b4f61c0e8179009 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Thu, 11 Apr 2024 10:42:56 +0200 Subject: [PATCH] build: use Go 1.21.9 to include latest security fixes Update from v1.21.5 to latest v1.21.9, to include the following fixes: go1.21.6 (released 2024-01-09) includes fixes to the compiler, the runtime, and the crypto/tls, maps, and runtime/pprof packages. go1.21.7 (released 2024-02-06) includes fixes to the compiler, the go command, the runtime, and the crypto/x509 package. go1.21.8 (released 2024-03-05) includes security fixes to the crypto/x509, html/template, net/http, net/http/cookiejar, and net/mail packages, as well as bug fixes to the go command and the runtime. go1.21.9 (released 2024-04-03) includes a security fix to the net/http package, as well as bug fixes to the linker, and the go/types and net/http packages. See-also: https://go.dev/doc/devel/release#go1.21.0 Signed-off-by: Niels de Vos (cherry picked from commit ae7f513816d0faba42a7b6bc0953363d25e6ed69) --- build.env | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.env b/build.env index c2bfe8009..2ac659f1d 100644 --- a/build.env +++ b/build.env @@ -19,7 +19,7 @@ BASE_IMAGE=quay.io/ceph/ceph:v18 CEPH_VERSION=reef # standard Golang options -GOLANG_VERSION=1.21.5 +GOLANG_VERSION=1.21.9 GO111MODULE=on # commitlint version diff --git a/go.mod b/go.mod index ac06b7d44..502d91bfd 100644 --- a/go.mod +++ b/go.mod @@ -2,7 +2,7 @@ module github.com/ceph/ceph-csi go 1.21 -toolchain go1.21.5 +toolchain go1.21.9 require ( github.com/IBM/keyprotect-go-client v0.12.2