Skip to content

Commit 84ff806

Browse files
stackit-skexoxys
andauthored
Replace wrong yaml package usage (#484)
Co-authored-by: Robert Kaussow <mail@thegeeklab.de>
1 parent 1dee58c commit 84ff806

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
@@ -118,6 +117,7 @@ require (
118117
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
119118
go.uber.org/multierr v1.11.0 // indirect
120119
go.uber.org/zap v1.27.0 // indirect
120+
go.yaml.in/yaml/v2 v2.4.3 // indirect
121121
go.yaml.in/yaml/v3 v3.0.4 // indirect
122122
golang.org/x/crypto v0.44.0 // indirect
123123
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)