Skip to content

Commit 35b81af

Browse files
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: arjunmalhotra1 <[email protected]>
1 parent f1f8b4d commit 35b81af

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ docker-remove:
5151

5252

5353

54-
GO_VERSION ?= 1.20.10
54+
GO_VERSION ?= 1.21.4
5555
ETCD_VERSION ?= $(shell git rev-parse --short HEAD || echo "GitNotFound")
5656

5757
TEST_SUFFIX = $(shell date +%s | base64 | head -c 15)

functional/scripts/docker-local-agent.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ if ! [[ "${0}" =~ "scripts/docker-local-agent.sh" ]]; then
1313
fi
1414

1515
if [[ -z "${GO_VERSION}" ]]; then
16-
GO_VERSION=1.20.10
16+
GO_VERSION=1.21.4
1717
fi
1818
echo "Running with GO_VERSION:" ${GO_VERSION}
1919

functional/scripts/docker-local-tester.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if ! [[ "${0}" =~ "scripts/docker-local-tester.sh" ]]; then
66
fi
77

88
if [[ -z "${GO_VERSION}" ]]; then
9-
GO_VERSION=1.20.10
9+
GO_VERSION=1.21.4
1010
fi
1111
echo "Running with GO_VERSION:" ${GO_VERSION}
1212

0 commit comments

Comments
 (0)