Skip to content

Commit 6bff239

Browse files
committed
chore: use Go 1.17
Bump tools and pkgs, run `go mod tidy -go=1.17`. Signed-off-by: Alexey Palazhchenko <[email protected]>
1 parent 56fb73b commit 6bff239

File tree

5 files changed

+92
-3
lines changed

5 files changed

+92
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ NAME := cluster-api-talos-controller
88

99
ARTIFACTS := _out
1010

11-
TOOLS ?= ghcr.io/talos-systems/tools:v0.7.0
12-
PKGS ?= v0.7.0
11+
TOOLS ?= ghcr.io/talos-systems/tools:v0.8.0-alpha.0-3-g2790b55
12+
PKGS ?= v0.8.0-alpha.0-3-gdb90f93
1313
TALOS_VERSION ?= v0.12.1
1414
K8S_VERSION ?= 1.21.4
1515

api/v1alpha2/zz_generated.conversion.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/v1alpha2/zz_generated.deepcopy.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/v1alpha3/zz_generated.deepcopy.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.mod

Lines changed: 87 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/talos-systems/cluster-api-bootstrap-provider-talos
22

3-
go 1.16
3+
go 1.17
44

55
require (
66
github.com/AlekSi/pointer v1.1.0
@@ -20,3 +20,89 @@ require (
2020
sigs.k8s.io/cluster-api v0.3.22
2121
sigs.k8s.io/controller-runtime v0.5.14
2222
)
23+
24+
require (
25+
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect
26+
github.com/beorn7/perks v1.0.1 // indirect
27+
github.com/blang/semver v3.5.1+incompatible // indirect
28+
github.com/cespare/xxhash/v2 v2.1.1 // indirect
29+
github.com/containerd/go-cni v1.0.2 // indirect
30+
github.com/containernetworking/cni v0.8.1 // indirect
31+
github.com/cosi-project/runtime v0.0.0-20210625174835-93ead370bf57 // indirect
32+
github.com/davecgh/go-spew v1.1.1 // indirect
33+
github.com/docker/distribution v2.7.1+incompatible // indirect
34+
github.com/drone/envsubst v1.0.3-0.20200709223903-efdb65b94e5a // indirect
35+
github.com/dustin/go-humanize v1.0.0 // indirect
36+
github.com/fsnotify/fsnotify v1.4.9 // indirect
37+
github.com/ghodss/yaml v1.0.0 // indirect
38+
github.com/go-logr/zapr v0.1.0 // indirect
39+
github.com/gobuffalo/flect v0.2.2 // indirect
40+
github.com/gogo/protobuf v1.3.1 // indirect
41+
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
42+
github.com/golang/protobuf v1.5.2 // indirect
43+
github.com/google/go-cmp v0.5.6 // indirect
44+
github.com/google/go-github v17.0.0+incompatible // indirect
45+
github.com/google/go-querystring v1.0.0 // indirect
46+
github.com/google/gofuzz v1.1.0 // indirect
47+
github.com/google/uuid v1.1.2 // indirect
48+
github.com/googleapis/gnostic v0.3.1 // indirect
49+
github.com/hashicorp/errwrap v1.0.0 // indirect
50+
github.com/hashicorp/go-multierror v1.1.1 // indirect
51+
github.com/hashicorp/golang-lru v0.5.4 // indirect
52+
github.com/hashicorp/hcl v1.0.0 // indirect
53+
github.com/imdario/mergo v0.3.9 // indirect
54+
github.com/josharian/native v0.0.0-20200817173448-b6b71def0850 // indirect
55+
github.com/jsimonetti/rtnetlink v0.0.0-20210614053835-9c52e516c709 // indirect
56+
github.com/json-iterator/go v1.1.10 // indirect
57+
github.com/magiconair/properties v1.8.1 // indirect
58+
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
59+
github.com/mdlayher/ethtool v0.0.0-20210210192532-2b88debcdd43 // indirect
60+
github.com/mdlayher/genetlink v1.0.0 // indirect
61+
github.com/mdlayher/netlink v1.4.1 // indirect
62+
github.com/mdlayher/socket v0.0.0-20210307095302-262dc9984e00 // indirect
63+
github.com/mitchellh/mapstructure v1.1.2 // indirect
64+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
65+
github.com/modern-go/reflect2 v1.0.1 // indirect
66+
github.com/onsi/gomega v1.13.0 // indirect
67+
github.com/opencontainers/go-digest v1.0.0 // indirect
68+
github.com/opencontainers/runtime-spec v1.0.3-0.20200929063507-e6143ca7d51d // indirect
69+
github.com/pelletier/go-toml v1.6.0 // indirect
70+
github.com/pkg/errors v0.9.1 // indirect
71+
github.com/pmezard/go-difflib v1.0.0 // indirect
72+
github.com/prometheus/client_golang v1.5.1 // indirect
73+
github.com/prometheus/client_model v0.2.0 // indirect
74+
github.com/prometheus/common v0.9.1 // indirect
75+
github.com/prometheus/procfs v0.0.11 // indirect
76+
github.com/ryanuber/go-glob v1.0.0 // indirect
77+
github.com/spf13/afero v1.2.2 // indirect
78+
github.com/spf13/cast v1.3.0 // indirect
79+
github.com/spf13/jwalterweatherman v1.0.0 // indirect
80+
github.com/spf13/viper v1.6.2 // indirect
81+
github.com/subosito/gotenv v1.2.0 // indirect
82+
github.com/talos-systems/go-blockdevice v0.2.1 // indirect
83+
github.com/talos-systems/net v0.3.0 // indirect
84+
go.uber.org/atomic v1.7.0 // indirect
85+
go.uber.org/multierr v1.6.0 // indirect
86+
go.uber.org/zap v1.16.0 // indirect
87+
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
88+
golang.org/x/net v0.0.0-20210525063256-abc453219eb5 // indirect
89+
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect
90+
golang.org/x/text v0.3.6 // indirect
91+
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
92+
gomodules.xyz/jsonpatch/v2 v2.0.1 // indirect
93+
google.golang.org/appengine v1.6.6 // indirect
94+
google.golang.org/genproto v0.0.0-20210617175327-b9e0b3197ced // indirect
95+
google.golang.org/grpc v1.38.0 // indirect
96+
google.golang.org/protobuf v1.26.0 // indirect
97+
gopkg.in/fsnotify.v1 v1.4.7 // indirect
98+
gopkg.in/inf.v0 v0.9.1 // indirect
99+
gopkg.in/ini.v1 v1.51.0 // indirect
100+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
101+
k8s.io/apiserver v0.17.9 // indirect
102+
k8s.io/cluster-bootstrap v0.17.9 // indirect
103+
k8s.io/component-base v0.17.9 // indirect
104+
k8s.io/klog v1.0.0 // indirect
105+
k8s.io/klog/v2 v2.0.0 // indirect
106+
k8s.io/kube-openapi v0.0.0-20200410145947-bcb3869e6f29 // indirect
107+
sigs.k8s.io/yaml v1.2.0 // indirect
108+
)

0 commit comments

Comments
 (0)