Skip to content

Commit 133f75e

Browse files
committed
bump go version to 1.19+
go is currently on 1.24 / 1.23, 1.19 is old enough to still support back to Kubernetes 1.23 (10 releases behind the upcoming 1.33) switching to a newer go version gives us improvements to module management
1 parent dda5e3a commit 133f75e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

go.mod

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@ module sigs.k8s.io/structured-merge-diff/v4
33
require (
44
github.com/google/go-cmp v0.5.9
55
github.com/json-iterator/go v1.1.12
6-
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
76
sigs.k8s.io/randfill v0.0.0-20250304075658-069ef1bbf016
87
sigs.k8s.io/yaml v1.4.0
98
)
109

11-
go 1.13
10+
require (
11+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
12+
github.com/modern-go/reflect2 v1.0.2 // indirect
13+
)
14+
15+
go 1.19

0 commit comments

Comments
 (0)