diff --git a/config.go b/config.go index eb689d7..efe38f2 100644 --- a/config.go +++ b/config.go @@ -32,7 +32,7 @@ import ( "github.com/fatih/color" "github.com/hashicorp/go-getter" "github.com/minio/selfupdate" - yaml "gopkg.in/yaml.v2" + yaml "gopkg.in/yaml.v3" ) const ( diff --git a/go.mod b/go.mod index e5581ec..58da120 100644 --- a/go.mod +++ b/go.mod @@ -21,7 +21,7 @@ require ( github.com/minio/selfupdate v0.6.0 github.com/sirupsen/logrus v1.9.3 github.com/stretchr/testify v1.9.0 - gopkg.in/yaml.v2 v2.4.0 + gopkg.in/yaml.v3 v3.0.1 ) require ( @@ -124,6 +124,6 @@ require ( gopkg.in/src-d/go-billy.v4 v4.3.2 // indirect gopkg.in/src-d/go-git.v4 v4.13.1 // indirect gopkg.in/warnings.v0 v0.1.2 // indirect - gopkg.in/yaml.v3 v3.0.1 // indirect + gopkg.in/yaml.v2 v2.4.0 // indirect gotest.tools/v3 v3.1.0 // indirect )