From 25675bce85ce7e5c79681b680fc40eccc4019cdc Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Tue, 12 Mar 2024 15:52:17 -0700 Subject: [PATCH] Use Go 1.20 Versions before this are unsupported by the Go team anyway, but the main reason is because our pull request checks workflow uses this to determine which toolchain version to run the tests with. --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index ec1556b3..47a23097 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/hashicorp/hcl/v2 -go 1.18 +go 1.20 require ( github.com/agext/levenshtein v1.2.1