Skip to content

Commit 27273d6

Browse files
committed
chore(go): bump go mod
1 parent 6a26cd4 commit 27273d6

4 files changed

Lines changed: 334 additions & 74 deletions

File tree

boot.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import (
55
"os"
66
"runtime"
77

8-
"github.com/codegangsta/cli"
98
storagedriver "github.com/docker/distribution/registry/storage/driver"
109
"github.com/docker/distribution/registry/storage/driver/factory"
1110
_ "github.com/docker/distribution/registry/storage/driver/s3-aws"
@@ -19,6 +18,7 @@ import (
1918
"github.com/drycc/builder/pkg/sys"
2019
pkglog "github.com/drycc/pkg/log"
2120
"github.com/kelseyhightower/envconfig"
21+
"github.com/urfave/cli"
2222
)
2323

2424
const (

go.mod

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
module github.com/drycc/builder
22

3-
go 1.13
3+
go 1.16
44

55
require (
66
github.com/arschles/assert v1.0.1-0.20191213221312-71f210f9375a
7-
github.com/aws/aws-sdk-go v1.28.2
8-
github.com/codegangsta/cli v1.9.0
7+
github.com/aws/aws-sdk-go v1.40.15
8+
github.com/urfave/cli v1.22.5
99
github.com/docker/distribution v2.7.1+incompatible
1010
github.com/docker/go-metrics v0.0.1 // indirect
1111
github.com/drycc/controller-sdk-go v0.0.0-20210629042308-95dbca4156e7
1212
github.com/drycc/pkg v0.0.0-20200811173146-1f2b2781a852
13-
github.com/gorilla/mux v1.7.4 // indirect
14-
github.com/kelseyhightower/envconfig v1.2.0
15-
github.com/pborman/uuid v1.2.0
16-
github.com/sirupsen/logrus v1.6.0 // indirect
17-
golang.org/x/crypto v0.0.0-20200709230013-948cd5f35899
18-
gopkg.in/yaml.v2 v2.2.8
19-
k8s.io/api v0.18.6
20-
k8s.io/apimachinery v0.18.6
21-
k8s.io/client-go v0.18.6
13+
github.com/gorilla/mux v1.8.0 // indirect
14+
github.com/kelseyhightower/envconfig v1.4.0
15+
github.com/pborman/uuid v1.2.1
16+
github.com/sirupsen/logrus v1.8.1 // indirect
17+
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83
18+
gopkg.in/yaml.v2 v2.4.0
19+
k8s.io/api v0.22.0
20+
k8s.io/apimachinery v0.22.0
21+
k8s.io/client-go v0.22.0
2222
)

0 commit comments

Comments
 (0)