From 056dcfd416b2985e77d4e8ca257b298384f7811e Mon Sep 17 00:00:00 2001 From: Arjun Kondur Date: Wed, 21 Aug 2024 18:55:56 -0500 Subject: [PATCH] Try 1.23.0 and change Dockerfile to use 1.23.0 --- .env | 2 +- Dockerfile | 2 +- README.md | 2 +- docs/ChangeLog.md | 2 +- go.mod | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.env b/.env index 98ecd4c28..7c166b57a 100644 --- a/.env +++ b/.env @@ -1,6 +1,6 @@ OPERATOR_SDK_VERSION=v1.31.0 REVIEWERS=vivekr-splunk,akondur -GO_VERSION=1.22.0 +GO_VERSION=1.23.0 AWSCLI_URL=https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.8.6.zip KUBECTL_VERSION=v1.29.1 AZ_CLI_VERSION=2.30.0 diff --git a/Dockerfile b/Dockerfile index c1659317d..5dc8daa2a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build the manager binary -FROM golang:1.21.1 as builder +FROM golang:1.23.0 as builder WORKDIR /workspace # Copy the Go Modules manifests diff --git a/README.md b/README.md index 8a1003593..539d8a366 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ You must have [Docker Engine](https://docs.docker.com/install/) installed to build the Splunk Operator. This project uses [Go modules](https://blog.golang.org/using-go-modules), -and requires [golang](https://golang.org/doc/install) 1.21.1 or later. +and requires [golang](https://golang.org/doc/install) 1.23.0 or later. You must `export GO111MODULE=on` if cloning these repositories into your `$GOPATH` (not recommended). diff --git a/docs/ChangeLog.md b/docs/ChangeLog.md index c20ba3c76..dd58b93a3 100644 --- a/docs/ChangeLog.md +++ b/docs/ChangeLog.md @@ -10,7 +10,7 @@ * CSPL-2721 - Update MC upgrade path -* CSPL-2747 - Upgrade go, go-restful versions to address vulnerabilities +* CSPL-2747 - Upgrade go(to 1.23.0), go-restful versions to address vulnerabilities ### Supported Splunk Version >| Splunk Version| diff --git a/go.mod b/go.mod index abb94d47e..fa22afb7a 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/splunk/splunk-operator -go 1.22.0 +go 1.23.0 require ( github.com/aws/aws-sdk-go v1.47.11