From decf5526d1ed945503ac98a802488f335fe951ca Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Sun, 17 Mar 2024 19:38:12 +0100 Subject: [PATCH] Downgrade Go version in go.mod The Go version specified in the go.mod file has been downgraded from 1.22.1 to 1.22. This change is necessary to maintain compatibility with systems and dependencies that may not yet support the latest version of Go. --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 7a6716a..6bad959 100644 --- a/go.mod +++ b/go.mod @@ -4,6 +4,6 @@ module github.com/wneessen/apg-go -go 1.22.1 +go 1.22 require github.com/wneessen/go-hibp v1.0.6