From beb0a3205eaf8d33a3229a5f88369f8c5648582b Mon Sep 17 00:00:00 2001 From: Mayuresh Date: Thu, 9 Apr 2026 17:03:49 +0530 Subject: [PATCH] fix(go.mod): revert accidental go 1.25.0 toolchain bump to go 1.24.6 go mod tidy bumped the directive from 1.24.6 to 1.25.0 because the local machine runs Go 1.25. Nothing in the benchmark code requires 1.25. Pinning back to 1.24.6 keeps this PR consistent with the CI workflows (beckn_ci.yml, beckn_ci_test.yml, build-and-deploy-plugins.yml) which all pin to Go 1.24.x. --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 2513d64..2310340 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/beckn-one/beckn-onix -go 1.25.0 +go 1.24.6 require ( github.com/santhosh-tekuri/jsonschema/v6 v6.0.1