From 4ffab921dca024c2588df5298b935ac3a27d7262 Mon Sep 17 00:00:00 2001 From: bruwbird Date: Mon, 11 Nov 2024 06:06:12 +0900 Subject: [PATCH] mod: down grade Go version to 1.22.2 - Ensure compatibility with major Linux distributions. --- go.mod | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 36810a5b..ce14fd2c 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,8 @@ module github.com/elementsproject/peerswap -go 1.23.1 +// When updating the Go version, ensure it is supported by major Linux distributions. +// Additionally, if updated, also update the nix package and the execution version in CI as needed. +go 1.22.2 require ( github.com/benbjohnson/clock v1.3.0 // indirect