From 51ea1c0abee16e17ccf150c1d26af6478102d5da Mon Sep 17 00:00:00 2001 From: James Blair Date: Wed, 8 Mar 2023 22:46:34 +1300 Subject: [PATCH] Updated go to 1.19.7. Mitigates CVE-2023-24532. Signed-off-by: James Blair --- .github/workflows/release.yaml | 2 +- .github/workflows/tests.yaml | 2 +- Makefile | 2 +- functional/scripts/docker-local-agent.sh | 2 +- functional/scripts/docker-local-tester.sh | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1ed1b58bd..1686c81cd 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -7,7 +7,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 with: - go-version: "1.19.6" + go-version: "1.19.7" - run: | git config --global user.email "github-action@etcd.io" git config --global user.name "Github Action" diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 376037bd6..1cfb03a4f 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -20,7 +20,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 with: - go-version: "1.19.6" + go-version: "1.19.7" - run: date - env: TARGET: ${{ matrix.target }} diff --git a/Makefile b/Makefile index 726fe32e7..6c9138b90 100644 --- a/Makefile +++ b/Makefile @@ -51,7 +51,7 @@ docker-remove: -GO_VERSION ?= 1.19.6 +GO_VERSION ?= 1.19.7 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 29d66b2f4..d2552e364 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.19.6 + GO_VERSION=1.19.7 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 58d7707e9..10a06e5d3 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.19.6 + GO_VERSION=1.19.7 fi echo "Running with GO_VERSION:" ${GO_VERSION}