From 7d802548f8afe5119718a41a24c535a35589e958 Mon Sep 17 00:00:00 2001 From: arjunmalhotra1 Date: Sun, 12 Nov 2023 14:00:59 -0600 Subject: [PATCH] etcd: upgrade go version from 1.21.3 to 1.21.4 in Makefile, docker-local-agent.sh & docker-local-tester.sh To keep etcd projects up to date with the latest patch releases & incorporate the latest security updates. Signed-off-by: Arjun Malhotra --- Makefile | 2 +- functional/scripts/docker-local-agent.sh | 2 +- functional/scripts/docker-local-tester.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index db5bd601ba8f..27806e8963c7 100644 --- a/Makefile +++ b/Makefile @@ -51,7 +51,7 @@ docker-remove: -GO_VERSION ?= 1.20.10 +GO_VERSION ?= 1.21.4 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 21751d3b9c23..a17a2a3ce511 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.10 + GO_VERSION=1.21.4 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 869133cb3455..a3da530e8484 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.10 + GO_VERSION=1.21.4 fi echo "Running with GO_VERSION:" ${GO_VERSION}