From 5df8ce911dfc9afb6ca42415da5ca8fd3d2e2aa9 Mon Sep 17 00:00:00 2001 From: Austin Valle Date: Mon, 9 Sep 2024 10:39:43 -0400 Subject: [PATCH] all: Bump minimum Go module version to 1.22 (#244) --- README.md | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9759acd..c0a40cd 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Once you've written your provider, you'll want to [publish it on the Terraform R ## Requirements - [Terraform](https://developer.hashicorp.com/terraform/downloads) >= 1.0 -- [Go](https://golang.org/doc/install) >= 1.21 +- [Go](https://golang.org/doc/install) >= 1.22 ## Building The Provider diff --git a/go.mod b/go.mod index 8cc02ca..46ec7fa 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/hashicorp/terraform-provider-scaffolding-framework -go 1.21 +go 1.22.7 require ( github.com/hashicorp/terraform-plugin-docs v0.19.4