From 4b2380ca7c4e719379ad2c694c8e85853453ef32 Mon Sep 17 00:00:00 2001 From: James Bardin Date: Mon, 9 Sep 2024 14:54:35 -0400 Subject: [PATCH] update to go1.23 Release notes: https://go.dev/doc/go1.23 --- .go-version | 2 +- go.mod | 2 +- internal/backend/remote-state/azure/go.mod | 2 +- internal/backend/remote-state/consul/go.mod | 2 +- internal/backend/remote-state/cos/go.mod | 2 +- internal/backend/remote-state/gcs/go.mod | 2 +- internal/backend/remote-state/kubernetes/go.mod | 2 +- internal/backend/remote-state/oss/go.mod | 2 +- internal/backend/remote-state/pg/go.mod | 2 +- internal/backend/remote-state/s3/go.mod | 2 +- internal/legacy/go.mod | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.go-version b/.go-version index da9594fd66..49e0a31d49 100644 --- a/.go-version +++ b/.go-version @@ -1 +1 @@ -1.22.5 +1.23.1 diff --git a/go.mod b/go.mod index 159fdda115..f8a34bd843 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/hashicorp/terraform -go 1.22.5 +go 1.23.1 require ( github.com/Netflix/go-expect v0.0.0-20220104043353-73e0943537d2 diff --git a/internal/backend/remote-state/azure/go.mod b/internal/backend/remote-state/azure/go.mod index 808ee39478..fc38965da3 100644 --- a/internal/backend/remote-state/azure/go.mod +++ b/internal/backend/remote-state/azure/go.mod @@ -1,6 +1,6 @@ module github.com/hashicorp/terraform/internal/backend/remote-state/azure -go 1.22.5 +go 1.23.1 require ( github.com/Azure/azure-sdk-for-go v59.2.0+incompatible diff --git a/internal/backend/remote-state/consul/go.mod b/internal/backend/remote-state/consul/go.mod index 814635d849..23c274b2bb 100644 --- a/internal/backend/remote-state/consul/go.mod +++ b/internal/backend/remote-state/consul/go.mod @@ -1,6 +1,6 @@ module github.com/hashicorp/terraform/internal/backend/remote-state/consul -go 1.22.5 +go 1.23.1 require ( github.com/hashicorp/consul/api v1.13.0 diff --git a/internal/backend/remote-state/cos/go.mod b/internal/backend/remote-state/cos/go.mod index ca42d75c73..9527c89811 100644 --- a/internal/backend/remote-state/cos/go.mod +++ b/internal/backend/remote-state/cos/go.mod @@ -1,6 +1,6 @@ module github.com/hashicorp/terraform/internal/backend/remote-state/cos -go 1.22.5 +go 1.23.1 require ( github.com/hashicorp/terraform v0.0.0-00010101000000-000000000000 diff --git a/internal/backend/remote-state/gcs/go.mod b/internal/backend/remote-state/gcs/go.mod index 0d35efcf60..e21c29cef8 100644 --- a/internal/backend/remote-state/gcs/go.mod +++ b/internal/backend/remote-state/gcs/go.mod @@ -1,6 +1,6 @@ module github.com/hashicorp/terraform/internal/backend/remote-state/gcs -go 1.22.5 +go 1.23.1 require ( cloud.google.com/go/kms v1.15.0 diff --git a/internal/backend/remote-state/kubernetes/go.mod b/internal/backend/remote-state/kubernetes/go.mod index bb51e40246..25d7b45dd5 100644 --- a/internal/backend/remote-state/kubernetes/go.mod +++ b/internal/backend/remote-state/kubernetes/go.mod @@ -1,6 +1,6 @@ module github.com/hashicorp/terraform/internal/backend/remote-state/kubernetes -go 1.22.5 +go 1.23.1 require ( github.com/hashicorp/terraform v0.0.0-00010101000000-000000000000 diff --git a/internal/backend/remote-state/oss/go.mod b/internal/backend/remote-state/oss/go.mod index da1d89b5c5..d875163002 100644 --- a/internal/backend/remote-state/oss/go.mod +++ b/internal/backend/remote-state/oss/go.mod @@ -1,6 +1,6 @@ module github.com/hashicorp/terraform/internal/backend/remote-state/oss -go 1.22.5 +go 1.23.1 require ( github.com/aliyun/alibaba-cloud-sdk-go v1.61.1501 diff --git a/internal/backend/remote-state/pg/go.mod b/internal/backend/remote-state/pg/go.mod index 851d01cb89..79911101f1 100644 --- a/internal/backend/remote-state/pg/go.mod +++ b/internal/backend/remote-state/pg/go.mod @@ -1,6 +1,6 @@ module github.com/hashicorp/terraform/internal/backend/remote-state/pg -go 1.22.5 +go 1.23.1 require ( github.com/hashicorp/go-uuid v1.0.3 diff --git a/internal/backend/remote-state/s3/go.mod b/internal/backend/remote-state/s3/go.mod index 7409fb556e..9f953d29c5 100644 --- a/internal/backend/remote-state/s3/go.mod +++ b/internal/backend/remote-state/s3/go.mod @@ -1,6 +1,6 @@ module github.com/hashicorp/terraform/internal/backend/remote-state/s3 -go 1.22.5 +go 1.23.1 require ( github.com/aws/aws-sdk-go-v2 v1.25.3 diff --git a/internal/legacy/go.mod b/internal/legacy/go.mod index cbd3e4c553..a08767457e 100644 --- a/internal/legacy/go.mod +++ b/internal/legacy/go.mod @@ -2,7 +2,7 @@ module github.com/hashicorp/terraform/internal/legacy replace github.com/hashicorp/terraform => ../.. -go 1.22.5 +go 1.23.1 require ( github.com/davecgh/go-spew v1.1.1