From 68504586bdf74c436a798f3732211f8949a014b1 Mon Sep 17 00:00:00 2001 From: Benjamin Wang Date: Wed, 11 Oct 2023 16:05:11 +0100 Subject: [PATCH] bump golang version to 1.20.10 Address CVE-2023-44487 https://github.com/advisories/GHSA-qppj-fm5r-hxr3 Signed-off-by: Benjamin Wang --- .go-version | 2 +- Makefile | 2 +- functional/scripts/docker-local-agent.sh | 2 +- functional/scripts/docker-local-tester.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.go-version b/.go-version index 20538953a..acdfc7930 100644 --- a/.go-version +++ b/.go-version @@ -1 +1 @@ -1.20.9 +1.20.10 diff --git a/Makefile b/Makefile index a84c097ce..db5bd601b 100644 --- a/Makefile +++ b/Makefile @@ -51,7 +51,7 @@ docker-remove: -GO_VERSION ?= 1.20.9 +GO_VERSION ?= 1.20.10 ETCD_VERSION ?= $(shell git rev-parse --short HEAD || echo "GitNotFound") TEST_SUFFIX = $(shell date +%s | base64 | head -c 15) diff --git a/functional/scripts/docker-local-agent.sh b/functional/scripts/docker-local-agent.sh index f6433f8d9..21751d3b9 100755 --- a/functional/scripts/docker-local-agent.sh +++ b/functional/scripts/docker-local-agent.sh @@ -13,7 +13,7 @@ if ! [[ "${0}" =~ "scripts/docker-local-agent.sh" ]]; then fi if [[ -z "${GO_VERSION}" ]]; then - GO_VERSION=1.20.9 + GO_VERSION=1.20.10 fi echo "Running with GO_VERSION:" ${GO_VERSION} diff --git a/functional/scripts/docker-local-tester.sh b/functional/scripts/docker-local-tester.sh index 6a7da494c..869133cb3 100755 --- a/functional/scripts/docker-local-tester.sh +++ b/functional/scripts/docker-local-tester.sh @@ -6,7 +6,7 @@ if ! [[ "${0}" =~ "scripts/docker-local-tester.sh" ]]; then fi if [[ -z "${GO_VERSION}" ]]; then - GO_VERSION=1.20.9 + GO_VERSION=1.20.10 fi echo "Running with GO_VERSION:" ${GO_VERSION}