From 77e8bd6bd4a94268acc6cc5ea8715f89c8c7421c Mon Sep 17 00:00:00 2001 From: Tiago Natel Date: Fri, 2 Feb 2024 02:31:40 +0000 Subject: [PATCH] chore(gha): fix macos action/setup-go@v4 cache miss. Set the same Go version as specified in the `go.mod` because of the issue below: - https://github.com/actions/setup-go/issues/424 Signed-off-by: Tiago Natel --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index dc95cfa99f..1b334d5276 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/terramate-io/terramate -go 1.18 +go 1.20 require ( github.com/alecthomas/kong v0.7.1