fix(gomod): downgrade to yaml v2.0
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Markus Pesch 2023-07-26 10:17:32 +02:00
parent c16871010c
commit c50c0a835e
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982
2 changed files with 2 additions and 2 deletions

2
go.mod
View File

@ -6,7 +6,6 @@ require (
github.com/spf13/cobra v1.7.0
github.com/stretchr/testify v1.8.4
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.1
)
require (
@ -14,4 +13,5 @@ require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

View File

@ -8,7 +8,7 @@ import (
"os"
"git.cryptic.systems/volker.raschek/dcmerge/pkg/domain/dockerCompose"
"gopkg.in/yaml.v3"
"gopkg.in/yaml.v2"
)
func Fetch(urls ...string) ([]*dockerCompose.Config, error) {