Skip to content

Commit 5ba888f

Browse files
committed
build: Tidy go files
It seems that recent dependencies changes were missing `go mod tidy`. Running it modified go.* files.
1 parent 25a9856 commit 5ba888f

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

go.mod

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ require (
1313
github.com/Xuanwo/go-locale v1.1.3
1414
github.com/blang/semver/v4 v4.0.0
1515
github.com/briandowns/spinner v1.11.1
16+
github.com/c4milo/gotoolkit v0.0.0-20190525173301-67483a18c17a
1617
github.com/cenkalti/backoff/v4 v4.3.0
1718
github.com/cheggaaa/pb/v3 v3.1.7
1819
github.com/cloudevents/sdk-go/v2 v2.16.0
@@ -22,6 +23,7 @@ require (
2223
github.com/docker/go-connections v0.5.0
2324
github.com/docker/go-units v0.5.0
2425
github.com/docker/machine v0.16.2
26+
github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815
2527
github.com/elazarl/goproxy v1.7.2
2628
github.com/golang-collections/collections v0.0.0-20130729185459-604e922904d3
2729
github.com/google/go-cmp v0.7.0
@@ -31,6 +33,7 @@ require (
3133
github.com/google/uuid v1.6.0
3234
github.com/hashicorp/go-getter v1.7.8
3335
github.com/hashicorp/go-retryablehttp v0.7.7
36+
github.com/hooklift/assert v0.0.0-20170704181755-9d1defd6d214
3437
github.com/hooklift/iso9660 v1.0.0
3538
github.com/icza/dyno v0.0.0-20230330125955-09f820a8d9c0
3639
github.com/johanneswuerbach/nfsexports v0.0.0-20200318065542-c48c3734757f
@@ -73,6 +76,7 @@ require (
7376
golang.org/x/term v0.32.0
7477
golang.org/x/text v0.26.0
7578
google.golang.org/api v0.235.0
79+
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
7680
gopkg.in/yaml.v2 v2.4.0
7781
k8s.io/api v0.33.2
7882
k8s.io/apimachinery v0.33.2
@@ -107,7 +111,6 @@ require (
107111
github.com/aws/aws-sdk-go v1.44.122 // indirect
108112
github.com/beorn7/perks v1.0.1 // indirect
109113
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
110-
github.com/c4milo/gotoolkit v0.0.0-20190525173301-67483a18c17a // indirect
111114
github.com/cespare/xxhash/v2 v2.3.0 // indirect
112115
github.com/cncf/xds/go v0.0.0-20250121191232-2f005788dc42 // indirect
113116
github.com/containerd/errdefs v1.0.0 // indirect
@@ -151,14 +154,15 @@ require (
151154
github.com/hashicorp/go-safetemp v1.0.0 // indirect
152155
github.com/hashicorp/go-version v1.6.0 // indirect
153156
github.com/hectane/go-acl v0.0.0-20190604041725-da78bae5fc95 // indirect
154-
github.com/hooklift/assert v0.0.0-20170704181755-9d1defd6d214 // indirect
155157
github.com/huandu/xstrings v1.3.2 // indirect
156158
github.com/inconshreveable/mousetrap v1.1.0 // indirect
157159
github.com/jmespath/go-jmespath v0.4.0 // indirect
158160
github.com/josharian/intern v1.0.0 // indirect
159161
github.com/json-iterator/go v1.1.12 // indirect
160162
github.com/juju/errors v0.0.0-20220203013757-bd733f3c86b9 // indirect
161163
github.com/klauspost/compress v1.18.0 // indirect
164+
github.com/kr/pretty v0.3.1 // indirect
165+
github.com/kr/text v0.2.0 // indirect
162166
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
163167
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
164168
github.com/mailru/easyjson v0.7.7 // indirect
@@ -192,6 +196,7 @@ require (
192196
github.com/prometheus/common v0.62.0 // indirect
193197
github.com/prometheus/procfs v0.15.1 // indirect
194198
github.com/rivo/uniseg v0.4.7 // indirect
199+
github.com/rogpeppe/go-internal v1.13.1 // indirect
195200
github.com/russross/blackfriday/v2 v2.1.0 // indirect
196201
github.com/sagikazarmark/locafero v0.7.0 // indirect
197202
github.com/sayboras/dockerclient v1.0.0 // indirect

go.sum

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -780,6 +780,7 @@ github.com/docker/go-units v0.0.0-20151230175859-0bbddae09c5a/go.mod h1:fgPhTUdO
780780
github.com/docker/go-units v0.5.0 h1:69rxXcBk27SvSaaxTtLh/8llcHD8vYHT7WSdRZ/jvr4=
781781
github.com/docker/go-units v0.5.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk=
782782
github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96/go.mod h1:Qh8CwZgvJUkLughtfhJv5dyTYa91l1fOUCrgjqmcifM=
783+
github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815 h1:bWDMxwH3px2JBh6AyO7hdCn/PkvCZXii8TGj7sbtEbQ=
783784
github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE=
784785
github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk=
785786
github.com/elazarl/goproxy v0.0.0-20180725130230-947c36da3153/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc=

0 commit comments

Comments
 (0)