Skip to content
Closed
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
4 changes: 2 additions & 2 deletions src/cloud-api-adaptor/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ require (
github.com/vmware/govmomi v0.33.1 // indirect
golang.org/x/sys v0.36.0
google.golang.org/grpc v1.74.2
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.1
k8s.io/cri-api v0.33.0 // indirect
libvirt.org/go/libvirt v1.9008.0
libvirt.org/go/libvirtxml v1.9007.0
Expand Down Expand Up @@ -236,7 +236,7 @@ require (
gopkg.in/evanphx/json-patch.v5 v5.9.11 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gotest.tools/v3 v3.5.2 // indirect
k8s.io/klog/v2 v2.130.1 // indirect
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
Expand Down
2 changes: 1 addition & 1 deletion src/cloud-api-adaptor/pkg/userdata/provision.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"time"

retry "github.com/avast/retry-go/v4"
yaml "gopkg.in/yaml.v2"
yaml "gopkg.in/yaml.v3"

"github.com/confidential-containers/cloud-api-adaptor/src/cloud-api-adaptor/pkg/initdata"
. "github.com/confidential-containers/cloud-api-adaptor/src/cloud-api-adaptor/pkg/paths"
Expand Down
2 changes: 1 addition & 1 deletion src/cloud-api-adaptor/test/e2e/assessment_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (

pv "github.com/confidential-containers/cloud-api-adaptor/src/cloud-api-adaptor/test/provisioner"
log "github.com/sirupsen/logrus"
yaml "gopkg.in/yaml.v2"
yaml "gopkg.in/yaml.v3"
batchv1 "k8s.io/api/batch/v1"
corev1 "k8s.io/api/core/v1"
v1 "k8s.io/api/core/v1"
Expand Down
2 changes: 1 addition & 1 deletion src/cloud-api-adaptor/test/e2e/assessment_runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"testing"
"time"

yaml "gopkg.in/yaml.v2"
yaml "gopkg.in/yaml.v3"
batchv1 "k8s.io/api/batch/v1"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down
2 changes: 1 addition & 1 deletion src/cloud-api-adaptor/test/e2e/nginx_deployment.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"time"

"github.com/confidential-containers/cloud-api-adaptor/src/cloud-api-adaptor/test/utils"
yaml "gopkg.in/yaml.v2"
yaml "gopkg.in/yaml.v3"
appsv1 "k8s.io/api/apps/v1"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down
2 changes: 1 addition & 1 deletion src/cloud-api-adaptor/test/utils/test_versions.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"os"
"sync"

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

// TestVersions represents the test versions.yaml
Expand Down
2 changes: 1 addition & 1 deletion src/cloud-api-adaptor/test/utils/versions.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package utils
import (
"os"

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

// Relative to test/e2e
Expand Down
4 changes: 2 additions & 2 deletions src/cloud-providers/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ require (
golang.org/x/oauth2 v0.31.0
google.golang.org/api v0.247.0
google.golang.org/protobuf v1.36.7
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.1
k8s.io/apimachinery v0.26.0
k8s.io/client-go v0.26.0
libvirt.org/go/libvirt v1.9008.0
Expand All @@ -57,6 +57,7 @@ require (
github.com/moby/sys/atomicwriter v0.1.0 // indirect
github.com/tjfoc/gmsm v1.4.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)

require (
Expand Down Expand Up @@ -152,7 +153,6 @@ require (
google.golang.org/genproto/googleapis/rpc v0.0.0-20250818200422-3122310a409c // indirect
google.golang.org/grpc v1.74.2 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gotest.tools/v3 v3.5.1 // indirect
k8s.io/api v0.26.0
k8s.io/klog/v2 v2.110.1 // indirect
Expand Down
2 changes: 1 addition & 1 deletion src/cloud-providers/util/cloudinit/cloudconfig_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strings"
"testing"

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

const forwarderConfigPath = "/peerpod/apf.json"
Expand Down
3 changes: 1 addition & 2 deletions src/peerpod-ctrl/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ require (
go.opentelemetry.io/otel/trace v1.38.0 // indirect
golang.org/x/tools v0.36.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect

gopkg.in/yaml.v2 v2.4.0 // indirect
)

require (
Expand Down Expand Up @@ -136,7 +136,6 @@ require (
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
google.golang.org/protobuf v1.36.7 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
k8s.io/apiextensions-apiserver v0.26.0 // indirect
k8s.io/component-base v0.26.0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion src/webhook/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ require (
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
k8s.io/apiextensions-apiserver v0.29.2 // indirect
k8s.io/component-base v0.29.6 // indirect
Expand Down