fd7562aa50
Updates the Go version from 1.23.0 to 1.23.6 in go.mod to ensure compatibility with the latest features and fixes. Adjusts the toolchain version to reflect the updated Go installation, promoting stability and support for ongoing development.
56 lines
2.2 KiB
Modula-2
56 lines
2.2 KiB
Modula-2
module gitlab.com/unboundsoftware/cron-checker
|
|
|
|
go 1.23.6
|
|
|
|
require (
|
|
github.com/alecthomas/kingpin/v2 v2.4.0
|
|
github.com/multiplay/go-slack v0.0.0-20220428123529-0762aee71fe3
|
|
github.com/robfig/cron v1.2.0
|
|
github.com/sanity-io/litter v1.5.6
|
|
k8s.io/api v0.32.1
|
|
k8s.io/apimachinery v0.32.1
|
|
k8s.io/client-go v0.32.1
|
|
)
|
|
|
|
require (
|
|
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
|
|
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
|
|
github.com/go-logr/logr v1.4.2 // indirect
|
|
github.com/go-openapi/jsonpointer v0.21.0 // indirect
|
|
github.com/go-openapi/jsonreference v0.20.2 // indirect
|
|
github.com/go-openapi/swag v0.23.0 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/golang/protobuf v1.5.4 // indirect
|
|
github.com/google/gnostic-models v0.6.8 // indirect
|
|
github.com/google/go-cmp v0.6.0 // indirect
|
|
github.com/google/gofuzz v1.2.0 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/x448/float16 v0.8.4 // indirect
|
|
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
|
|
golang.org/x/net v0.30.0 // indirect
|
|
golang.org/x/oauth2 v0.23.0 // indirect
|
|
golang.org/x/sys v0.26.0 // indirect
|
|
golang.org/x/term v0.25.0 // indirect
|
|
golang.org/x/text v0.19.0 // indirect
|
|
golang.org/x/time v0.7.0 // indirect
|
|
google.golang.org/protobuf v1.35.1 // indirect
|
|
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
k8s.io/klog/v2 v2.130.1 // indirect
|
|
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
|
|
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect
|
|
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
|
|
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
|
|
sigs.k8s.io/yaml v1.4.0 // indirect
|
|
)
|