Skip to content

Commit 683a2b2

Browse files
committed
Go: Fix Mage.
1 parent da01937 commit 683a2b2

File tree

4 files changed

+80
-228
lines changed

4 files changed

+80
-228
lines changed

go.mod

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,11 @@ require (
77
github.com/armon/go-proxyproto v0.1.0
88
github.com/eapache/channels v1.1.0
99
github.com/fsnotify/fsnotify v1.8.0
10+
github.com/google/go-github/v48 v48.2.0
11+
github.com/helm/helm v2.17.0+incompatible
1012
github.com/json-iterator/go v1.1.12
1113
github.com/kylelemons/godebug v1.1.0
14+
github.com/magefile/mage v1.15.0
1215
github.com/mitchellh/go-ps v1.0.0
1316
github.com/mitchellh/hashstructure/v2 v2.0.2
1417
github.com/mitchellh/mapstructure v1.5.0
@@ -23,11 +26,12 @@ require (
2326
github.com/spf13/cobra v1.9.1
2427
github.com/spf13/pflag v1.0.6
2528
github.com/stretchr/testify v1.10.0
29+
github.com/vmware-labs/yaml-jsonpath v0.3.2
2630
github.com/yudai/gojsondiff v1.0.0
2731
github.com/zakjan/cert-chain-resolver v0.0.0-20221221105603-fcedb00c5b30
2832
golang.org/x/crypto v0.36.0
2933
google.golang.org/grpc v1.71.0
30-
google.golang.org/grpc/examples v0.0.0-20250321200952-b0d120384670
34+
google.golang.org/grpc/examples v0.0.0-20250324163736-a51009d1d707
3135
gopkg.in/go-playground/pool.v3 v3.1.1
3236
gopkg.in/mcuadros/go-syslog.v2 v2.3.0
3337
k8s.io/api v0.32.3
@@ -40,30 +44,37 @@ require (
4044
k8s.io/component-base v0.32.3
4145
k8s.io/klog/v2 v2.130.1
4246
pault.ag/go/sniff v0.0.0-20200207005214-cf7e4d167732
43-
sigs.k8s.io/controller-runtime v0.20.3
47+
sigs.k8s.io/controller-runtime v0.20.4
4448
sigs.k8s.io/mdtoc v1.4.0
4549
)
4650

4751
require (
52+
github.com/Masterminds/semver v1.5.0 // indirect
4853
github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be // indirect
54+
github.com/dprotaso/go-yit v0.0.0-20240618133044-5a0af90af097 // indirect
4955
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
56+
github.com/ghodss/yaml v1.0.0 // indirect
57+
github.com/gobwas/glob v0.2.3 // indirect
58+
github.com/google/go-querystring v1.1.0 // indirect
5059
github.com/klauspost/compress v1.18.0 // indirect
5160
github.com/moby/sys/userns v0.1.0 // indirect
5261
github.com/rogpeppe/go-internal v1.13.1 // indirect
5362
github.com/x448/float16 v0.8.4 // indirect
5463
go.opentelemetry.io/otel v1.35.0 // indirect
5564
go.opentelemetry.io/otel/trace v1.35.0 // indirect
5665
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
66+
gopkg.in/yaml.v2 v2.4.0 // indirect
67+
k8s.io/helm v2.17.0+incompatible // indirect
5768
sigs.k8s.io/randfill v1.0.0 // indirect
5869
sigs.k8s.io/release-utils v0.8.3 // indirect
5970
)
6071

6172
require (
6273
github.com/Anddd7/pb v0.0.0-20240516033506-f3934fdc18bd
6374
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
64-
github.com/BurntSushi/toml v1.3.2 // indirect
75+
github.com/BurntSushi/toml v1.5.0 // indirect
6576
github.com/beorn7/perks v1.0.1 // indirect
66-
github.com/blang/semver/v4 v4.0.0 // indirect
77+
github.com/blang/semver/v4 v4.0.0
6778
github.com/cespare/xxhash/v2 v2.3.0 // indirect
6879
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
6980
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
@@ -116,18 +127,18 @@ require (
116127
github.com/yudai/pp v2.0.1+incompatible // indirect
117128
golang.org/x/mod v0.24.0 // indirect
118129
golang.org/x/net v0.37.0 // indirect
119-
golang.org/x/oauth2 v0.28.0 // indirect
130+
golang.org/x/oauth2 v0.28.0
120131
golang.org/x/sync v0.12.0 // indirect
121132
golang.org/x/sys v0.31.0 // indirect
122133
golang.org/x/term v0.30.0 // indirect
123134
golang.org/x/text v0.23.0 // indirect
124135
golang.org/x/time v0.11.0 // indirect
125136
golang.org/x/tools v0.31.0 // indirect
126-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250313205543-e70fdf4c4cb4 // indirect
137+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250324211829-b45e905df463 // indirect
127138
google.golang.org/protobuf v1.36.6 // indirect
128139
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
129140
gopkg.in/inf.v0 v0.9.1 // indirect
130-
gopkg.in/yaml.v3 v3.0.1 // indirect
141+
gopkg.in/yaml.v3 v3.0.1
131142
k8s.io/gengo/v2 v2.0.0-20240911193312-2b36238f13e9 // indirect
132143
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
133144
k8s.io/utils v0.0.0-20250321185631-1f6e0b77f77e // indirect

0 commit comments

Comments
 (0)