From 676140c5801be5e2993aedf088463961845d5865 Mon Sep 17 00:00:00 2001 From: Andrew Nester Date: Tue, 11 Mar 2025 10:49:33 +0000 Subject: [PATCH] Set Go patch version in go.mod (#2466) ## Changes Set Go patch version in go.mod ## Why Our dependabot PRs failing with the following diff ``` Run # Exit with status code 1 if there are differences (i.e. unformatted files) diff --git a/go.mod b/go.mod index 5c1cb1d..493152a 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,[7](https://github.com/databricks/cli/actions/runs/13768953030/job/38502532441?pr=2459#step:5:8) @@ module github.com/databricks/cli -go 1.23 +go 1.23.0 + ``` While I'm not sure why it started to happen, setting the patch version at least should fix these PR. This might be related to this change in Go https://github.com/golang/go/issues/69095 --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index ce40b3423..2054a22db 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/databricks/cli -go 1.23 +go 1.23.0 toolchain go1.23.7