Skip to content
Open
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
1 change: 0 additions & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
/cmd/pipelines/ @jefferycheng1 @kanterov @lennartkats-db
/cmd/labs/ @alexott @nfx
/cmd/apps/ @databricks/eng-app-devex
/libs/apps/ @databricks/eng-app-devex
/cmd/workspace/apps/ @databricks/eng-app-devex
/libs/apps/ @databricks/eng-app-devex
/acceptance/apps/ @databricks/eng-app-devex
Expand Down
2 changes: 1 addition & 1 deletion cmd/apps/import.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"sort"
"strings"

"gopkg.in/yaml.v3"
"go.yaml.in/yaml/v3"

"github.com/databricks/cli/bundle"
"github.com/databricks/cli/bundle/deploy/terraform"
Expand Down
3 changes: 1 addition & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ require (
// Dependencies for experimental MCP commands
require github.com/google/jsonschema-go v0.4.2 // MIT

require gopkg.in/yaml.v3 v3.0.1

require (
cloud.google.com/go/auth v0.16.5 // indirect
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
Expand Down Expand Up @@ -100,4 +98,5 @@ require (
google.golang.org/genproto/googleapis/rpc v0.0.0-20250922171735-9219d122eba9 // indirect
google.golang.org/grpc v1.75.1 // indirect
google.golang.org/protobuf v1.36.9 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
2 changes: 1 addition & 1 deletion libs/apps/initializer/initializer.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"path/filepath"
"strings"

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

// InitResult contains the outcome of an initialization operation.
Expand Down