Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion commands/delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"

"code.cloudfoundry.org/credhub-cli/errors"
"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"
)

type DeleteCommand struct {
Expand Down
2 changes: 1 addition & 1 deletion commands/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"code.cloudfoundry.org/credhub-cli/credhub"
"code.cloudfoundry.org/credhub-cli/credhub/auth"
"code.cloudfoundry.org/credhub-cli/errors"
"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"
)

func initializeCredhubClient(cfg config.Config) (*credhub.CredHub, error) {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ require (
github.com/jessevdk/go-flags v1.6.1
github.com/onsi/ginkgo/v2 v2.27.3
github.com/onsi/gomega v1.38.3
go.yaml.in/yaml/v3 v3.0.4
golang.org/x/net v0.48.0
golang.org/x/term v0.38.0
gopkg.in/yaml.v3 v3.0.1
Expand All @@ -29,7 +30,6 @@ require (
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/nxadm/tail v1.4.11 // indirect
go.yaml.in/yaml/v3 v3.0.4 // indirect
golang.org/x/crypto v0.46.0 // indirect
golang.org/x/mod v0.31.0 // indirect
golang.org/x/sync v0.19.0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion models/credential_bulk_export.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"

"code.cloudfoundry.org/credhub-cli/credhub/credentials"
"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"
)

type exportCredential struct {
Expand Down
2 changes: 1 addition & 1 deletion models/credential_bulk_export_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"
)

var _ = Describe("ExportCredentials", func() {
Expand Down
2 changes: 1 addition & 1 deletion models/credential_bulk_import.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"strings"

"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"

"strconv"

Expand Down