From 12c3d76b2400daf565a5a5051b6ef99f59987869 Mon Sep 17 00:00:00 2001 From: Luke Heath Date: Tue, 9 Jul 2024 11:44:35 -0700 Subject: [PATCH] Update go.mod (#20273) Fixes code scanning warning: As of Go 1.21, toolchain versions [must use the 1.N.P syntax](https://go.dev/doc/toolchain#version). 1.22 in tools/terraform/go.mod does not match this syntax and there is no additional toolchain directive, which may cause some go commands to fail. --- tools/terraform/go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/terraform/go.mod b/tools/terraform/go.mod index ed7626cf4c..27d6ebca10 100644 --- a/tools/terraform/go.mod +++ b/tools/terraform/go.mod @@ -1,6 +1,6 @@ module terraform-provider-fleetdm -go 1.22 +go 1.22.4 require ( github.com/hashicorp/terraform-plugin-framework v1.7.0