From a01011cb97f49fb1d5f2c1f83ffaf1ebc6842338 Mon Sep 17 00:00:00 2001 From: John Bartholomew Date: Thu, 8 May 2025 11:28:29 +0100 Subject: [PATCH 1/2] fix Go version specifier in go.mod Only major.minor is supported, not the patch version. --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 79e03d3c..972ef11e 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/google/go-jsonnet -go 1.23.7 +go 1.23 require ( github.com/fatih/color v1.18.0 From 42ff1425fbe8cd206fa93e77389423dec495a880 Mon Sep 17 00:00:00 2001 From: John Bartholomew Date: Thu, 8 May 2025 11:45:41 +0100 Subject: [PATCH 2/2] WIP- experimentally test different go versions --- .github/workflows/ci.yml | 9 +++++++++ go.mod | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70c8d7a5..a95d1fdb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,6 +31,15 @@ jobs: # - goVersion: "1" # GOARCH: "ppc64le" # SKIP_PYTHON_BINDINGS_TESTS: "0" + - goVersion: "1.21" + GOARCH: "amd64" + SKIP_PYTHON_BINDINGS_TESTS: "0" + - goVersion: "1.22" + GOARCH: "amd64" + SKIP_PYTHON_BINDINGS_TESTS: "0" + - goVersion: "1.23" + GOARCH: "amd64" + SKIP_PYTHON_BINDINGS_TESTS: "0" - goVersion: "1.24" GOARCH: "amd64" SKIP_PYTHON_BINDINGS_TESTS: "0" diff --git a/go.mod b/go.mod index 972ef11e..79e03d3c 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/google/go-jsonnet -go 1.23 +go 1.23.7 require ( github.com/fatih/color v1.18.0