Skip to content

Commit

Permalink
chore: use only one version of go-yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
mdelapenya committed Dec 5, 2022
1 parent 6012946 commit 55cabef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/dependabot.go
Expand Up @@ -4,7 +4,7 @@ import (
"io/ioutil"
"path/filepath"

"gopkg.in/yaml.v2"
"gopkg.in/yaml.v3"
)

type Updates []Update
Expand Down
2 changes: 1 addition & 1 deletion examples/mkdocs.go
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"path/filepath"

"gopkg.in/yaml.v2"
"gopkg.in/yaml.v3"
)

type MkDocsConfig struct {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Expand Up @@ -21,7 +21,6 @@ require (
golang.org/x/sync v0.1.0
golang.org/x/sys v0.3.0
golang.org/x/text v0.3.7
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.1
gotest.tools/gotestsum v1.8.2
)
Expand Down Expand Up @@ -159,6 +158,7 @@ require (
google.golang.org/grpc v1.47.0 // indirect
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
k8s.io/api v0.24.1 // indirect
k8s.io/apimachinery v0.24.1 // indirect
k8s.io/client-go v0.24.1 // indirect
Expand Down

0 comments on commit 55cabef

Please sign in to comment.