Skip to content

Commit

Permalink
etcd: upgrade go version from 1.21.3 to 1.21.4
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
arjunmalhotra1 committed Nov 12, 2023
1 parent f1f8b4d commit 35b81af
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion functional/scripts/docker-local-agent.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}

Expand Down
2 changes: 1 addition & 1 deletion functional/scripts/docker-local-tester.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}

Expand Down

0 comments on commit 35b81af

Please sign in to comment.