Skip to content

Commit d8b9a22

Browse files
authored
update go.mod.tpl for modern values (#18)
We had an old Go version (1.14) and ancient deps listed in the default go.mod.tpl file. This updates to a more modern set of deps and Go version (1.19) which results in fewer iterations of `go mod tidy` when generating a bootstrapped controller. By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 57d6db8 commit d8b9a22

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

go.mod.tpl

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
module github.com/aws-controllers-k8s/{{ .Service.Name.Lower }}-controller
22

3-
go 1.14
3+
go 1.19
44

55
require (
6-
github.com/aws/aws-controllers-k8s v0.0.2
7-
github.com/aws/aws-sdk-go v1.35.5
8-
github.com/go-logr/logr v0.1.0
9-
github.com/google/go-cmp v0.3.1
6+
github.com/aws-controllers-k8s/runtime v0.24.0
7+
github.com/aws/aws-sdk-go v1.44.214
108
github.com/spf13/pflag v1.0.5
11-
k8s.io/api v0.18.2
12-
k8s.io/apimachinery v0.18.6
13-
k8s.io/client-go v0.18.2
14-
sigs.k8s.io/controller-runtime v0.6.0
9+
k8s.io/apimachinery v0.23.0
10+
k8s.io/client-go v0.23.0
11+
sigs.k8s.io/controller-runtime v0.11.0
1512
)

0 commit comments

Comments
 (0)