Skip to content

Commit

Permalink
chore: update go.mod deps
Browse files Browse the repository at this point in the history
Fix outdated pkgs reported in issue #2522

Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
  • Loading branch information
rchincha committed Aug 14, 2024
1 parent 2a164cc commit 4f851df
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ require (
golang.org/x/oauth2 v0.22.0
google.golang.org/protobuf v1.34.2
gopkg.in/resty.v1 v1.12.0
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.1
modernc.org/sqlite v1.32.0
oras.land/oras-go/v2 v2.5.0
)
Expand Down Expand Up @@ -485,7 +485,7 @@ require (
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/ini.v1 v1.67.0 // 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
helm.sh/helm/v3 v3.15.3 // indirect
k8s.io/api v0.30.3 // indirect
k8s.io/apiextensions-apiserver v0.30.3 // indirect
Expand Down
2 changes: 1 addition & 1 deletion pkg/cli/client/server_info_cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"strings"

"github.com/spf13/cobra"
"gopkg.in/yaml.v2"
"gopkg.in/yaml.v3"

zerr "zotregistry.dev/zot/errors"
"zotregistry.dev/zot/pkg/api/constants"
Expand Down
2 changes: 1 addition & 1 deletion pkg/cli/client/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"github.com/olekukonko/tablewriter"
godigest "github.com/opencontainers/go-digest"
ispec "github.com/opencontainers/image-spec/specs-go/v1"
"gopkg.in/yaml.v2"
"gopkg.in/yaml.v3"

zerr "zotregistry.dev/zot/errors"
"zotregistry.dev/zot/pkg/api/constants"
Expand Down

0 comments on commit 4f851df

Please sign in to comment.