From d8bff7fadd3e2b0175c5f1c3f57643ae33ca8396 Mon Sep 17 00:00:00 2001 From: Yann Hamon Date: Sun, 16 Feb 2025 18:30:30 +0100 Subject: [PATCH] WIP - upgrade jsonschema to v6 --- go.mod | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/go.mod b/go.mod index f982318..e418f0b 100644 --- a/go.mod +++ b/go.mod @@ -5,10 +5,8 @@ go 1.22 require ( github.com/hashicorp/go-retryablehttp v0.7.7 github.com/santhosh-tekuri/jsonschema/v6 v6.0.1 + golang.org/x/text v0.14.0 sigs.k8s.io/yaml v1.4.0 ) -require ( - github.com/hashicorp/go-cleanhttp v0.5.2 // indirect - golang.org/x/text v0.14.0 // indirect -) +require github.com/hashicorp/go-cleanhttp v0.5.2 // indirect