From c242c7c853e45455e500ffecb5882ebac03be827 Mon Sep 17 00:00:00 2001 From: Scott Leggett Date: Fri, 25 Oct 2024 10:46:52 +0800 Subject: [PATCH] chore: bump go version to supported release This also fixes the syntax in the current go.mod, which is no longer strictly legal (missing the patch version) and trips up CodeQL. https://go.dev/doc/toolchain#version --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 5d58e15b..4188c4af 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/uselagoon/lagoon-cli -go 1.21 +go 1.23.2 require ( github.com/Masterminds/semver/v3 v3.2.1