File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -27,13 +27,13 @@ require (
27
27
github.com/opencontainers/go-digest v1.0.0
28
28
github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799
29
29
github.com/pkg/errors v0.9.1
30
- github.com/sanathkr/go-yaml v0.0.0-20170819195128-ed9d249f429b
31
30
github.com/sirupsen/logrus v1.9.0
32
31
github.com/spf13/cobra v1.5.0
33
32
github.com/spf13/pflag v1.0.5
34
33
github.com/stretchr/testify v1.8.0
35
34
github.com/theupdateframework/notary v0.7.0
36
35
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4
36
+ gopkg.in/yaml.v2 v2.4.0
37
37
gotest.tools v2.2.0+incompatible
38
38
gotest.tools/v3 v3.3.0
39
39
)
@@ -120,7 +120,6 @@ require (
120
120
google.golang.org/grpc v1.45.0 // indirect
121
121
google.golang.org/protobuf v1.27.1 // indirect
122
122
gopkg.in/inf.v0 v0.9.1 // indirect
123
- gopkg.in/yaml.v2 v2.4.0 // indirect
124
123
gopkg.in/yaml.v3 v3.0.1 // indirect
125
124
k8s.io/apimachinery v0.24.1 // indirect; see replace for the actual version used
126
125
k8s.io/client-go v0.24.1 // indirect; see replace for the actual version used
Original file line number Diff line number Diff line change @@ -1222,8 +1222,6 @@ github.com/ryancurrah/gomodguard v1.1.0/go.mod h1:4O8tr7hBODaGE6VIhfJDHcwzh5GUcc
1222
1222
github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f /go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts =
1223
1223
github.com/safchain/ethtool v0.0.0-20190326074333-42ed695e3de8 /go.mod h1:Z0q5wiBQGYcxhMZ6gUqHn6pYNLypFAvaL3UvgZLR0U4 =
1224
1224
github.com/safchain/ethtool v0.0.0-20210803160452-9aa261dae9b1 /go.mod h1:Z0q5wiBQGYcxhMZ6gUqHn6pYNLypFAvaL3UvgZLR0U4 =
1225
- github.com/sanathkr/go-yaml v0.0.0-20170819195128-ed9d249f429b h1:jUK33OXuZP/l6babJtnLo1qsGvq6G9so9KMflGAm4YA =
1226
- github.com/sanathkr/go-yaml v0.0.0-20170819195128-ed9d249f429b /go.mod h1:8458kAagoME2+LN5//WxE71ysZ3B7r22fdgb7qVmXSY =
1227
1225
github.com/sassoftware/go-rpmutils v0.0.0-20190420191620-a8f1baeba37b /go.mod h1:am+Fp8Bt506lA3Rk3QCmSqmYmLMnPDhdDUcosQCAx+I =
1228
1226
github.com/satori/go.uuid v1.2.0 /go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0 =
1229
1227
github.com/sclevine/agouti v3.0.0+incompatible /go.mod h1:b4WX9W9L1sfQKXeJf1mUTLZKJ48R1S7H23Ji7oFO5Bw =
Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ import (
24
24
"io"
25
25
"strings"
26
26
27
+ "gopkg.in/yaml.v2"
28
+
27
29
"github.com/compose-spec/compose-go/types"
28
30
"github.com/docker/cli/cli/command"
29
31
"github.com/docker/cli/cli/config/configfile"
@@ -33,7 +35,6 @@ import (
33
35
"github.com/docker/docker/api/types/filters"
34
36
"github.com/docker/docker/client"
35
37
"github.com/pkg/errors"
36
- "github.com/sanathkr/go-yaml"
37
38
)
38
39
39
40
// NewComposeService create a local implementation of the compose.Service API
You can’t perform that action at this time.
0 commit comments