Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

go: Upgrade to go1.23.1 #39432

Merged
merged 2 commits into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ci/providerlint/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hashicorp/terraform-provider-aws/ci/providerlint

go 1.22.7
go 1.23.1

require (
github.com/bflad/tfproviderlint v0.30.0
Expand Down
2 changes: 1 addition & 1 deletion .ci/tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hashicorp/terraform-provider-aws/tools

go 1.23.0
go 1.23.1

require (
github.com/YakDriver/tfproviderdocs v0.14.3
Expand Down
6 changes: 5 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
module github.com/hashicorp/terraform-provider-aws

go 1.22.7
go 1.23.1

// Disable experimental post-quantum key exchange mechanism X25519Kyber768Draft00
// This was causing errors with AWS Network Firewall
godebug tlskyber=0

require (
github.com/ProtonMail/go-crypto v1.1.0-alpha.5-proton
Expand Down
2 changes: 1 addition & 1 deletion tools/awssdkpatch/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hashicorp/terraform-provider-aws/tools/awssdkpatch

go 1.22.7
go 1.23.1

require (
github.com/hashicorp/terraform-provider-aws v1.60.1-0.20220322001452-8f7a597d0c24
Expand Down
2 changes: 1 addition & 1 deletion tools/literally/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/hashicorp/terraform-provider-aws/tools/literally

go 1.23.0
go 1.23.1
2 changes: 1 addition & 1 deletion tools/tfsdk2fw/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hashicorp/terraform-provider-aws/tools/tfsdk2fw

go 1.22.7
go 1.23.1

require (
github.com/hashicorp/terraform-plugin-sdk/v2 v2.34.0
Expand Down
Loading