Skip to content

Commit 20d1619

Browse files
committed
update yaml dependency
This updates replace gopkg.in/yaml.v3 with sigs.k8s.io/yaml Signed-off-by: Alex Boten <[email protected]>
1 parent cf18559 commit 20d1619

File tree

80 files changed

+150
-15
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+150
-15
lines changed

cmd/mdatagen/go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ require (
7575
google.golang.org/grpc v1.71.1 // indirect
7676
google.golang.org/protobuf v1.36.6 // indirect
7777
gopkg.in/yaml.v3 v3.0.1 // indirect
78+
sigs.k8s.io/yaml v1.4.0 // indirect
7879
)
7980

8081
replace go.opentelemetry.io/collector/component => ../../component

cmd/mdatagen/go.sum

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cmd/otelcorecol/go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ require (
165165
google.golang.org/grpc v1.71.1 // indirect
166166
google.golang.org/protobuf v1.36.6 // indirect
167167
gopkg.in/yaml.v3 v3.0.1 // indirect
168+
sigs.k8s.io/yaml v1.4.0 // indirect
168169
)
169170

170171
replace go.opentelemetry.io/collector => ../../

cmd/otelcorecol/go.sum

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/configgrpc/go.sum

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/confighttp/go.sum

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/confighttp/xconfighttp/go.sum

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
7.04 MB
Binary file not shown.

config/configopaque/doc_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"encoding/json"
88
"fmt"
99

10-
"gopkg.in/yaml.v3"
10+
yaml "sigs.k8s.io/yaml/goyaml.v3"
1111

1212
"go.opentelemetry.io/collector/config/configopaque"
1313
)

config/configopaque/go.mod

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.23.0
55
require (
66
github.com/stretchr/testify v1.10.0
77
go.uber.org/goleak v1.3.0
8-
gopkg.in/yaml.v3 v3.0.1
8+
sigs.k8s.io/yaml v1.4.0
99
)
1010

1111
require (
@@ -14,4 +14,5 @@ require (
1414
github.com/pmezard/go-difflib v1.0.0 // indirect
1515
github.com/rogpeppe/go-internal v1.10.0 // indirect
1616
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
17+
gopkg.in/yaml.v3 v3.0.1 // indirect
1718
)

0 commit comments

Comments
 (0)