From fd7562aa50f50c909b139ecf9568abc77a3d36ad Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Thu, 6 Feb 2025 18:02:52 +0100 Subject: [PATCH] chore: update Go version and toolchain in go.mod Updates the Go version from 1.23.0 to 1.23.6 in go.mod to ensure compatibility with the latest features and fixes. Adjusts the toolchain version to reflect the updated Go installation, promoting stability and support for ongoing development. --- go.mod | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/go.mod b/go.mod index ec4831d..a49d534 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,6 @@ module gitlab.com/unboundsoftware/cron-checker -go 1.23.0 - -toolchain go1.23.6 +go 1.23.6 require ( github.com/alecthomas/kingpin/v2 v2.4.0