From 355023d66f612ed3d960ea204e6070fc896f091a Mon Sep 17 00:00:00 2001 From: kmoe <5575356+kmoe@users.noreply.github.com> Date: Mon, 11 Sep 2023 12:33:15 +0100 Subject: [PATCH] build with Go 1.21.1 (#33830) The Go 1.21.1 release includes some security fixes. These security fixes do not affect any functionality currently used by Terraform at run time or build time. The Go 1.21.1 release fixes a security vulnerability affecting the new "toolchain" directive in the go.mod file, which Terraform does not use at present. Nevertheless development and build environments should be upgraded to Go 1.21.1 to mitigate risk from accidental or experimental use of this directive. --- .go-version | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.go-version b/.go-version index 3500250a4b..2844977405 100644 --- a/.go-version +++ b/.go-version @@ -1 +1 @@ -1.21.0 +1.21.1 diff --git a/go.mod b/go.mod index e632c648c7..ec52db9cf9 100644 --- a/go.mod +++ b/go.mod @@ -272,4 +272,4 @@ require ( sigs.k8s.io/yaml v1.2.0 // indirect ) -go 1.21.0 +go 1.21.1