From a49bd30178e6faee093ff515f3d0f02f200179ca Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 16 Aug 2024 17:01:57 +0900 Subject: [PATCH] fix(deps): update module gopkg.in/yaml.v2 to v3 (#845) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- go.mod | 4 ++-- integration_test/kubeconfig/kubeconfig.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 54af63d..a0bed88 100644 --- a/go.mod +++ b/go.mod @@ -18,7 +18,7 @@ require ( golang.org/x/oauth2 v0.22.0 golang.org/x/sync v0.8.0 golang.org/x/term v0.23.0 - gopkg.in/yaml.v2 v2.4.0 + gopkg.in/yaml.v3 v3.0.1 k8s.io/apimachinery v0.31.0 k8s.io/client-go v0.31.0 k8s.io/klog/v2 v2.130.1 @@ -53,7 +53,7 @@ require ( golang.org/x/text v0.16.0 // indirect golang.org/x/time v0.3.0 // indirect gopkg.in/inf.v0 v0.9.1 // indirect - gopkg.in/yaml.v3 v3.0.1 // indirect + gopkg.in/yaml.v2 v2.4.0 // indirect k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect diff --git a/integration_test/kubeconfig/kubeconfig.go b/integration_test/kubeconfig/kubeconfig.go index 7c67548..74b02ba 100644 --- a/integration_test/kubeconfig/kubeconfig.go +++ b/integration_test/kubeconfig/kubeconfig.go @@ -6,7 +6,7 @@ import ( "path/filepath" "testing" - "gopkg.in/yaml.v2" + "gopkg.in/yaml.v3" ) // Values represents values in .kubeconfig template.