From 7daa4b7b9fdae769585befd5d25b7148802f92c7 Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Mon, 8 Dec 2025 10:56:29 -0800 Subject: [PATCH] go.mod: Upgrade to Go 1.25.5 We typically want our main branch to be on the latest Go release anyway, but in this case we also intend to backport this to the v1.11 release to patch GO-2025-4175, as discussed in opentofu/opentofu#3546. Signed-off-by: Martin Atkins --- .go-version | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.go-version b/.go-version index 5bb76b575e..b45fe31064 100644 --- a/.go-version +++ b/.go-version @@ -1 +1 @@ -1.25.3 +1.25.5 diff --git a/go.mod b/go.mod index 4b0af4f4db..006ef7bf73 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/opentofu/opentofu -go 1.25.3 +go 1.25.5 // At the time of adding this configuration, the new Go feature introduced here https://github.com/golang/go/issues/67061, // was having a good amount of issues linked to, affecting AWS Firewall, GCP various services and a lot more.