From 7ce6316b0ab6337c94f4c07f152fb75e18eb58ce Mon Sep 17 00:00:00 2001 From: Cheviiot <153805936+Cheviiot@users.noreply.github.com> Date: Sat, 25 Jul 2026 01:18:45 +1000 Subject: [PATCH] Lower go.mod version requirement to 1.23 Was accidentally pinned to the locally installed toolchain's exact version (1.26.5), which broke CI on runners with an older Go. Nothing in the code needs anything newer than 1.23. --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 4303eb8..05b1e14 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module github.com/Cheviiot/msvc-go-wine -go 1.26.5 +go 1.23