Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions src/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,15 @@ require (
go.opentelemetry.io/otel/trace v1.38.0
go.pinniped.dev v0.37.0
go.uber.org/ratelimit v0.3.1
go.yaml.in/yaml/v2 v2.4.2
Comment thread
CAICAIIs marked this conversation as resolved.
Outdated
golang.org/x/crypto v0.45.0
golang.org/x/net v0.47.0
golang.org/x/oauth2 v0.28.0
golang.org/x/sync v0.18.0
golang.org/x/text v0.31.0
golang.org/x/time v0.13.0
gopkg.in/h2non/gock.v1 v1.1.2
gopkg.in/yaml.v2 v2.4.0
go.yaml.in/yaml/v2 v2.4.2
Comment thread
CAICAIIs marked this conversation as resolved.
Outdated
helm.sh/helm/v3 v3.18.5
k8s.io/api v0.34.1
k8s.io/apimachinery v0.34.1
Expand Down Expand Up @@ -186,7 +187,6 @@ require (
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.0 // indirect
go.yaml.in/yaml/v2 v2.4.2 // indirect
go.yaml.in/yaml/v3 v3.0.4 // indirect
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
golang.org/x/sys v0.38.0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion src/jobservice/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"strings"
"time"

"gopkg.in/yaml.v2"
"go.yaml.in/yaml/v2"
Comment thread
CAICAIIs marked this conversation as resolved.
Outdated

"github.com/goharbor/harbor/src/jobservice/common/utils"
"github.com/goharbor/harbor/src/lib/log"
Expand Down
2 changes: 1 addition & 1 deletion src/pkg/chart/operator.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"fmt"
"strings"

"gopkg.in/yaml.v2"
"go.yaml.in/yaml/v2"
Comment thread
CAICAIIs marked this conversation as resolved.
Outdated
helm_chart "helm.sh/helm/v3/pkg/chart"
"helm.sh/helm/v3/pkg/chart/loader"
)
Expand Down
2 changes: 1 addition & 1 deletion src/registryctl/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"github.com/docker/distribution/configuration"
storagedriver "github.com/docker/distribution/registry/storage/driver"
"github.com/docker/distribution/registry/storage/driver/factory"
yaml "gopkg.in/yaml.v2"
yaml "go.yaml.in/yaml/v2"
Comment thread
CAICAIIs marked this conversation as resolved.
Outdated

"github.com/goharbor/harbor/src/lib/log"
)
Expand Down