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.
This commit is contained in:
Luke Heath 2024-07-09 11:44:35 -07:00 committed by GitHub
parent b31256c57c
commit 12c3d76b24
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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