Skip to content

Commit af8817e

Browse files
committed
chore(workflow-cli): upgrade go mod
1 parent c15f21b commit af8817e

4 files changed

Lines changed: 201 additions & 13 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
)

cmd/certs_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ func TestCertsList(t *testing.T) {
7272
assert.NoErr(t, err)
7373

7474
assert.Equal(t, b.String(), ` Name | Common Name | SubjectAltName | Expires | Fingerprint | Domains | Updated | Created
75-
+------------------+------------------+----------------------+--------------------------+-----------------+----------------------+------------+------------+
75+
-------------------+------------------+----------------------+--------------------------+-----------------+----------------------+------------+-------------
7676
test-example-com | test.example.com | test.com,example.com | 10 Nov 2014 (expired) | 12:34[...]78:90 | test.com,example.com | 9 Jun 2016 | 9 Jun 2016
7777
test-drycc-com | test.drycc.com | | 1 Aug 2016 (in 2 months) | ab:12[...]12:ab | | 9 Jun 2016 | 9 Jun 2016
7878
test1 | 1.test.drycc.com | | 11 Jun 2016 (in 2 days) | | | unknown | unknown
@@ -145,7 +145,7 @@ func TestCertsListLimit(t *testing.T) {
145145
assert.NoErr(t, err)
146146

147147
assert.Equal(t, b.String(), ` Name | Common Name | SubjectAltName | Expires | Fingerprint | Domains | Updated | Created
148-
+------------------+------------------+----------------------+-----------------------+-----------------+----------------------+------------+------------+
148+
-------------------+------------------+----------------------+-----------------------+-----------------+----------------------+------------+-------------
149149
test-example-com | test.example.com | test.com,example.com | 10 Nov 2014 (expired) | 12:34[...]78:90 | test.com,example.com | 9 Jun 2016 | 9 Jun 2016
150150
`, "output")
151151

go.mod

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,11 @@ module github.com/drycc/workflow-cli
33
go 1.13
44

55
require (
6-
github.com/arschles/assert v1.0.0
6+
github.com/arschles/assert v1.0.1-0.20191213221312-71f210f9375a
77
github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815
8-
github.com/drycc/controller-sdk-go v0.0.0-20190417134318-39a6c81f21f3
9-
github.com/drycc/pkg v0.0.0-20190129033019-bcdffff0fcb3
10-
github.com/goware/urlx v0.2.0 // indirect
11-
github.com/mattn/go-runewidth v0.0.4 // indirect
12-
github.com/olekukonko/tablewriter v0.0.1
13-
golang.org/x/crypto v0.0.0-20190411191339-88737f569e3a
14-
golang.org/x/net v0.0.0-20190415214537-1da14a5a36f2 // indirect
15-
golang.org/x/sys v0.0.0-20190416152802-12500544f89f // indirect
16-
gopkg.in/yaml.v2 v2.2.2
8+
github.com/drycc/controller-sdk-go v0.0.0-20200804054414-9d56a7f85205
9+
github.com/drycc/pkg v0.0.0-20200811173146-1f2b2781a852
10+
github.com/olekukonko/tablewriter v0.0.4
11+
golang.org/x/crypto v0.0.0-20200728195943-123391ffb6de
12+
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776
1713
)

0 commit comments

Comments
 (0)