Skip to content

Commit aa8d1e0

Browse files
committed
chore(workflow-cli): upgrade new require
1 parent 4064989 commit aa8d1e0

3 files changed

Lines changed: 24 additions & 424 deletions

File tree

cmd/builds.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"io/ioutil"
55
"os"
66

7-
yaml "gopkg.in/yaml.v2"
7+
yaml "gopkg.in/yaml.v3"
88

99
"github.com/drycc/controller-sdk-go/builds"
1010
)

go.mod

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,24 @@ go 1.19
44

55
require (
66
github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815
7-
github.com/drycc/controller-sdk-go v0.0.0-20220826093601-e0d4869ec634
8-
github.com/drycc/pkg v0.0.0-20210826011456-c60b87108840
7+
github.com/drycc/controller-sdk-go v0.0.0-20220830032209-a334918d2242
8+
github.com/drycc/pkg v0.0.0-20220830031116-26c11ff8667c
99
github.com/gorilla/websocket v1.5.0
1010
github.com/olekukonko/tablewriter v0.0.5
1111
github.com/stretchr/testify v1.8.0
12-
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e
12+
golang.org/x/exp v0.0.0-20220827204233-334a2380cb91
1313
golang.org/x/term v0.0.0-20220722155259-a9ba230a4035
14-
gopkg.in/yaml.v2 v2.4.0
14+
gopkg.in/yaml.v3 v3.0.1
1515
)
1616

1717
require (
1818
github.com/PuerkitoBio/purell v1.1.1 // indirect
1919
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
2020
github.com/davecgh/go-spew v1.1.1 // indirect
21-
github.com/goware/urlx v0.3.1 // indirect
21+
github.com/goware/urlx v0.3.2 // indirect
2222
github.com/mattn/go-runewidth v0.0.9 // indirect
2323
github.com/pmezard/go-difflib v1.0.0 // indirect
24-
golang.org/x/net v0.0.0-20210520170846-37e1c6afe023 // indirect
25-
golang.org/x/sys v0.0.0-20211019181941-9d821ace8654 // indirect
26-
golang.org/x/text v0.3.6 // indirect
27-
gopkg.in/yaml.v3 v3.0.1 // indirect
24+
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
25+
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
26+
golang.org/x/text v0.3.7 // indirect
2827
)

0 commit comments

Comments
 (0)