Skip to content

Commit e60f993

Browse files
stackit-skexoxys
andauthored
Replace wrong yaml package usage (#488)
Co-authored-by: Robert Kaussow <mail@thegeeklab.de>
1 parent 5431be5 commit e60f993

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ require (
1919
github.com/stackitcloud/stackit-sdk-go/services/iaas v1.3.0
2020
github.com/stackitcloud/stackit-sdk-go/services/loadbalancer v1.7.0
2121
go.uber.org/mock v0.6.0
22-
go.yaml.in/yaml/v2 v2.4.3
2322
golang.org/x/sync v0.19.0
2423
golang.org/x/sys v0.40.0
2524
google.golang.org/grpc v1.78.0
@@ -114,6 +113,7 @@ require (
114113
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
115114
go.uber.org/multierr v1.11.0 // indirect
116115
go.uber.org/zap v1.27.0 // indirect
116+
go.yaml.in/yaml/v2 v2.4.3 // indirect
117117
go.yaml.in/yaml/v3 v3.0.4 // indirect
118118
golang.org/x/crypto v0.44.0 // indirect
119119
golang.org/x/exp v0.0.0-20250620022241-b7579e27df2b // indirect

pkg/stackit/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import (
2929
oapiError "github.com/stackitcloud/stackit-sdk-go/core/oapierror"
3030
"github.com/stackitcloud/stackit-sdk-go/services/iaas"
3131
"github.com/stackitcloud/stackit-sdk-go/services/loadbalancer"
32-
"go.yaml.in/yaml/v2"
32+
"gopkg.in/yaml.v3"
3333
"k8s.io/apimachinery/pkg/util/wait"
3434

3535
"github.com/stackitcloud/cloud-provider-stackit/pkg/version"

0 commit comments

Comments
 (0)