diff --git a/go.mod b/go.mod index b1fc721b5b88..2ea3c961aa5e 100644 --- a/go.mod +++ b/go.mod @@ -75,8 +75,8 @@ require ( gopkg.in/fsnotify.v1 v1.4.7 // indirect gopkg.in/ini.v1 v1.62.0 // indirect gopkg.in/robfig/cron.v2 v2.0.0-20150107220207-be2e0b0deed5 // indirect - gopkg.in/yaml.v2 v2.4.0 - gopkg.in/yaml.v3 v3.0.1 + gopkg.in/yaml.v2 v2.4.0 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect k8s.io/api v0.25.9 k8s.io/apimachinery v0.26.5 k8s.io/client-go v0.25.9 @@ -87,7 +87,7 @@ require ( sigs.k8s.io/controller-runtime v0.12.3 sigs.k8s.io/controller-tools v0.9.2 sigs.k8s.io/prow v0.0.0-20240419142743-3cb2506c2ff3 - sigs.k8s.io/yaml v1.3.0 + sigs.k8s.io/yaml v1.4.0 ) require ( diff --git a/go.sum b/go.sum index 12931547e24e..2baf43fbb04a 100644 --- a/go.sum +++ b/go.sum @@ -1158,5 +1158,5 @@ sigs.k8s.io/structured-merge-diff/v4 v4.2.3 h1:PRbqxJClWWYMNV1dhaG4NsibJbArud9kF sigs.k8s.io/structured-merge-diff/v4 v4.2.3/go.mod h1:qjx8mGObPmV2aSZepjQjbmb2ihdVs8cGKBraizNC69E= sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc= -sigs.k8s.io/yaml v1.3.0 h1:a2VclLzOGrwOHDiV8EfBGhvjHvP46CtW5j6POvhYGGo= -sigs.k8s.io/yaml v1.3.0/go.mod h1:GeOyir5tyXNByN85N/dRIT9es5UQNerPYEKK56eTBm8= +sigs.k8s.io/yaml v1.4.0 h1:Mk1wCc2gy/F0THH0TAp1QYyJNzRm2KCLy3o5ASXVI5E= +sigs.k8s.io/yaml v1.4.0/go.mod h1:Ejl7/uTz7PSA4eKMyQCUTnhZYNmLIl+5c2lQPGR2BPY= diff --git a/hack/ts-rollup/main.go b/hack/ts-rollup/main.go index 3702202cc118..8fd695743ef5 100644 --- a/hack/ts-rollup/main.go +++ b/hack/ts-rollup/main.go @@ -29,7 +29,7 @@ import ( "sync" "github.com/sirupsen/logrus" - "gopkg.in/yaml.v3" + yaml "sigs.k8s.io/yaml/goyaml.v3" ) const ( diff --git a/pkg/genyaml/genyaml.go b/pkg/genyaml/genyaml.go index f780d1bd59d3..297b423d053f 100644 --- a/pkg/genyaml/genyaml.go +++ b/pkg/genyaml/genyaml.go @@ -78,8 +78,8 @@ import ( "sync" "github.com/clarketm/json" - yaml3 "gopkg.in/yaml.v3" "k8s.io/apimachinery/pkg/util/sets" + yaml3 "sigs.k8s.io/yaml/goyaml.v3" ) const ( diff --git a/pkg/genyaml/genyaml_test.go b/pkg/genyaml/genyaml_test.go index ec8f35770034..1169133e672e 100644 --- a/pkg/genyaml/genyaml_test.go +++ b/pkg/genyaml/genyaml_test.go @@ -24,7 +24,7 @@ import ( "strings" "testing" - yaml3 "gopkg.in/yaml.v3" + yaml3 "sigs.k8s.io/yaml/goyaml.v3" simplealiases "k8s.io/test-infra/pkg/genyaml/testdata/alias_simple_types" aliases "k8s.io/test-infra/pkg/genyaml/testdata/alias_types" diff --git a/releng/config-forker/main.go b/releng/config-forker/main.go index 85c74c6818d4..482ffd8812a0 100644 --- a/releng/config-forker/main.go +++ b/releng/config-forker/main.go @@ -27,8 +27,8 @@ import ( "strings" "text/template" - gyaml "gopkg.in/yaml.v2" "sigs.k8s.io/yaml" + gyaml "sigs.k8s.io/yaml/goyaml.v2" v1 "k8s.io/api/core/v1" prowapi "sigs.k8s.io/prow/pkg/apis/prowjobs/v1" @@ -487,8 +487,6 @@ func main() { // We need to use FutureLineWrap because "fork-per-release-cron" is too long // causing the annotation value to be split into two lines. - // We use gopkg.in/yaml here because sigs.k8s.io/yaml doesn't export this - // function. sigs.k8s.io/yaml uses gopkg.in/yaml under the hood. gyaml.FutureLineWrap() output, err := yaml.Marshal(map[string]interface{}{ diff --git a/releng/config-rotator/main.go b/releng/config-rotator/main.go index 3c024b97473e..797a95bfd05b 100644 --- a/releng/config-rotator/main.go +++ b/releng/config-rotator/main.go @@ -24,8 +24,8 @@ import ( "os" "strings" - gyaml "gopkg.in/yaml.v2" "sigs.k8s.io/yaml" + gyaml "sigs.k8s.io/yaml/goyaml.v2" "sigs.k8s.io/prow/pkg/config" ) @@ -146,8 +146,6 @@ func main() { // We need to use FutureLineWrap because "fork-per-release-cron" is too long // causing the annotation value to be split into two lines. - // We use gopkg.in/yaml here because sigs.k8s.io/yaml doesn't export this - // function. sigs.k8s.io/yaml uses gopkg.in/yaml under the hood. gyaml.FutureLineWrap() output, err := yaml.Marshal(map[string]interface{}{