Skip to content

Commit 2e6dca4

Browse files
authored
update yaml dependency (#4368)
## Changes <!-- Brief summary of your changes that is easy to understand --> Updates some comments from this pr #4365 ## Why <!-- Why are these changes needed? Provide the context that the reviewer might be missing. For example, were there any decisions behind the change that are not reflected in the code itself? --> ## Tests <!-- How have you tested the changes? --> <!-- If your PR needs to be included in the release notes for next release, add a separate entry in NEXT_CHANGELOG.md as part of your PR. --> Co-authored-by: MarioCadenas <MarioCadenas@users.noreply.github.com>
1 parent 472f05d commit 2e6dca4

4 files changed

Lines changed: 3 additions & 5 deletions

File tree

.github/CODEOWNERS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
/cmd/pipelines/ @jefferycheng1 @kanterov @lennartkats-db
66
/cmd/labs/ @alexott @nfx
77
/cmd/apps/ @databricks/eng-app-devex
8-
/libs/apps/ @databricks/eng-app-devex
98
/cmd/workspace/apps/ @databricks/eng-app-devex
109
/libs/apps/ @databricks/eng-app-devex
1110
/acceptance/apps/ @databricks/eng-app-devex

cmd/apps/import.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"sort"
1111
"strings"
1212

13-
"gopkg.in/yaml.v3"
13+
"go.yaml.in/yaml/v3"
1414

1515
"github.com/databricks/cli/bundle"
1616
"github.com/databricks/cli/bundle/deploy/terraform"

go.mod

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@ require (
4545
// Dependencies for experimental MCP commands
4646
require github.com/google/jsonschema-go v0.4.2 // MIT
4747

48-
require gopkg.in/yaml.v3 v3.0.1
49-
5048
require (
5149
cloud.google.com/go/auth v0.16.5 // indirect
5250
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
@@ -100,4 +98,5 @@ require (
10098
google.golang.org/genproto/googleapis/rpc v0.0.0-20250922171735-9219d122eba9 // indirect
10199
google.golang.org/grpc v1.75.1 // indirect
102100
google.golang.org/protobuf v1.36.9 // indirect
101+
gopkg.in/yaml.v3 v3.0.1 // indirect
103102
)

libs/apps/initializer/initializer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"path/filepath"
77
"strings"
88

9-
"gopkg.in/yaml.v3"
9+
"go.yaml.in/yaml/v3"
1010
)
1111

1212
// InitResult contains the outcome of an initialization operation.

0 commit comments

Comments
 (0)