From 581737df6b9778f50570e8f9d56d721f3033083d Mon Sep 17 00:00:00 2001 From: Carson Long <12767276+ctlong@users.noreply.github.com> Date: Mon, 7 Oct 2024 09:28:36 -0700 Subject: [PATCH] fix(go.mod): Update go version Uses `1.22` as the `go` version and `go1.22.8` as the toolchain version. This should fix GH actions, enabling it to select and use the latest patch version of go1.22 rather than go1.22.0 every time. --- go.mod | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 9495aa5..35bffb3 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,8 @@ module code.cloudfoundry.org/log-cache-cli/v4 -go 1.22.0 +go 1.22 + +toolchain go1.22.8 require ( code.cloudfoundry.org/cli v7.1.0+incompatible