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.
This commit is contained in:
Mayuresh
2026-04-09 17:03:49 +05:30
parent 23e39722d2
commit beb0a3205e

2
go.mod
View File

@@ -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