From 1a9057b3783c0559dd8729770d47e77a3aa8792a Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Thu, 6 Feb 2025 18:05:21 +0100 Subject: [PATCH] fix(go.mod): update Go version to 1.23.6 Removes the Go version locking for 1.21 and updates it to 1.23.6 for compatibility with the current toolchain. This ensures that the module uses the correct Go version for building and running the application. --- go.mod | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 6ac16b8..4c74381 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,6 @@ module gitlab.com/unboundsoftware/s3uploader -go 1.21 - -toolchain go1.23.6 +go 1.23.6 require ( github.com/alecthomas/kong v1.7.0 -- 2.52.0