@@ -25,10 +25,12 @@ require (
25
25
github.com/google/go-github/v32 v32.1.0
26
26
github.com/google/go-querystring v1.1.0
27
27
github.com/google/uuid v1.3.1
28
+ github.com/hashicorp/go-plugin v1.5.0
28
29
github.com/jedib0t/go-pretty v4.3.0+incompatible
29
30
github.com/magefile/mage v1.15.0
30
31
github.com/mattn/go-sqlite3 v1.14.17
31
32
github.com/mholt/archiver/v3 v3.5.1
33
+ github.com/mikefarah/yq/v4 v4.35.1
32
34
github.com/olekukonko/tablewriter v0.0.5
33
35
github.com/pmezard/go-difflib v1.0.0
34
36
github.com/shirou/gopsutil/v3 v3.23.8
@@ -58,7 +60,9 @@ require (
58
60
github.com/Pallinder/go-randomdata v1.2.0 // indirect
59
61
github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 // indirect
60
62
github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f // indirect
63
+ github.com/a8m/envsubst v1.4.2 // indirect
61
64
github.com/acomagu/bufpipe v1.0.4 // indirect
65
+ github.com/alecthomas/participle/v2 v2.0.0 // indirect
62
66
github.com/andybalholm/brotli v1.0.4 // indirect
63
67
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect
64
68
github.com/bitfield/gotestdox v0.2.1 // indirect
@@ -68,9 +72,11 @@ require (
68
72
github.com/creasty/defaults v1.7.0 // indirect
69
73
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
70
74
github.com/davecgh/go-spew v1.1.1 // indirect
75
+ github.com/dimchansky/utfbom v1.1.1 // indirect
71
76
github.com/dnephin/pflag v1.0.7 // indirect
72
77
github.com/dsnet/compress v0.0.2-0.20210315054119-f66993602bf5 // indirect
73
78
github.com/elastic/gojsonschema v1.2.1 // indirect
79
+ github.com/elliotchance/orderedmap v1.5.0 // indirect
74
80
github.com/emicklei/go-restful/v3 v3.10.1 // indirect
75
81
github.com/emirpasic/gods v1.18.1 // indirect
76
82
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
@@ -86,6 +92,8 @@ require (
86
92
github.com/go-openapi/jsonreference v0.20.2 // indirect
87
93
github.com/go-openapi/strfmt v0.21.3 // indirect
88
94
github.com/go-openapi/swag v0.22.3 // indirect
95
+ github.com/goccy/go-json v0.10.2 // indirect
96
+ github.com/goccy/go-yaml v1.11.0 // indirect
89
97
github.com/gogo/protobuf v1.3.2 // indirect
90
98
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
91
99
github.com/golang/protobuf v1.5.3 // indirect
@@ -96,11 +104,14 @@ require (
96
104
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
97
105
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
98
106
github.com/hashicorp/errwrap v1.1.0 // indirect
107
+ github.com/hashicorp/go-hclog v0.14.1 // indirect
99
108
github.com/hashicorp/go-multierror v1.1.1 // indirect
109
+ github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb // indirect
100
110
github.com/huandu/xstrings v1.4.0 // indirect
101
111
github.com/imdario/mergo v0.3.15 // indirect
102
112
github.com/inconshreveable/mousetrap v1.1.0 // indirect
103
113
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
114
+ github.com/jinzhu/copier v0.3.5 // indirect
104
115
github.com/joeshaw/multierror v0.0.0-20140124173710-69b34d4ec901 // indirect
105
116
github.com/josharian/intern v1.0.0 // indirect
106
117
github.com/json-iterator/go v1.1.12 // indirect
@@ -111,13 +122,15 @@ require (
111
122
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
112
123
github.com/lithammer/shortuuid/v3 v3.0.7 // indirect
113
124
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
125
+ github.com/magiconair/properties v1.8.7 // indirect
114
126
github.com/mailru/easyjson v0.7.7 // indirect
115
127
github.com/mattn/go-colorable v0.1.13 // indirect
116
128
github.com/mattn/go-isatty v0.0.19 // indirect
117
129
github.com/mattn/go-runewidth v0.0.14 // indirect
118
130
github.com/mattn/go-tty v0.0.3 // indirect
119
131
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
120
132
github.com/mitchellh/copystructure v1.2.0 // indirect
133
+ github.com/mitchellh/go-testing-interface v0.0.0-20171004221916-a61a99592b77 // indirect
121
134
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
122
135
github.com/mitchellh/mapstructure v1.5.0 // indirect
123
136
github.com/mitchellh/reflectwalk v1.0.2 // indirect
@@ -128,7 +141,9 @@ require (
128
141
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
129
142
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
130
143
github.com/nwaples/rardecode v1.1.3 // indirect
144
+ github.com/oklog/run v1.0.0 // indirect
131
145
github.com/oklog/ulid v1.3.1 // indirect
146
+ github.com/pelletier/go-toml/v2 v2.0.9 // indirect
132
147
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
133
148
github.com/pierrec/lz4/v4 v4.1.17 // indirect
134
149
github.com/pjbgf/sha1cd v0.3.0 // indirect
@@ -163,9 +178,13 @@ require (
163
178
golang.org/x/term v0.12.0 // indirect
164
179
golang.org/x/text v0.13.0 // indirect
165
180
golang.org/x/time v0.3.0 // indirect
181
+ golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
166
182
google.golang.org/appengine v1.6.7 // indirect
183
+ google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19 // indirect
184
+ google.golang.org/grpc v1.54.0 // indirect
167
185
google.golang.org/protobuf v1.30.0 // indirect
168
186
gopkg.in/inf.v0 v0.9.1 // indirect
187
+ gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 // indirect
169
188
gopkg.in/warnings.v0 v0.1.2 // indirect
170
189
gopkg.in/yaml.v2 v2.4.0 // indirect
171
190
k8s.io/api v0.28.2 // indirect
0 commit comments