Skip to content

Commit 89b0869

Browse files
Merge pull request #4 from cloudfoundry-community/norm/dependncy-upgrade
Upgrade go to 1.24
2 parents a3dc82d + 170bd34 commit 89b0869

File tree

2 files changed

+192
-100
lines changed

2 files changed

+192
-100
lines changed

go.mod

Lines changed: 28 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
11
module github.com/cloudfoundry-community/ocf-scheduler-cf-plugin
22

3-
go 1.22.0
4-
5-
toolchain go1.22.3
3+
go 1.24
64

75
require (
8-
code.cloudfoundry.org/cli v0.0.0-20240404012325-79ae2fb5db92
9-
github.com/cloudfoundry-community/ocf-scheduler v1.0.0
6+
code.cloudfoundry.org/cli v0.0.0-20250512223002-f10828d071cc
7+
github.com/cloudfoundry-community/ocf-scheduler v1.0.3
108
github.com/cloudfoundry/cf-acceptance-tests v1.9.1-0.20220405181007-a6e4d7ae3b33
119
github.com/cloudfoundry/cf-test-helpers v1.0.1-0.20220329060630-a1956dba8c6c
1210
github.com/ess/hype v1.1.5
13-
github.com/onsi/ginkgo/v2 v2.17.3
14-
github.com/onsi/gomega v1.33.1
11+
github.com/onsi/ginkgo/v2 v2.23.4
12+
github.com/onsi/gomega v1.37.0
1513
github.com/spf13/pflag v1.0.5
16-
k8s.io/apimachinery v0.30.1
14+
k8s.io/apimachinery v0.32.3
1715
)
1816

1917
require (
20-
code.cloudfoundry.org/bytefmt v0.0.0-20230612151507-41ef4d1f67a4 // indirect
21-
code.cloudfoundry.org/tlsconfig v0.0.0-20230612153104-23c0622de227 // indirect
18+
code.cloudfoundry.org/bytefmt v0.36.0 // indirect
19+
code.cloudfoundry.org/jsonry v1.1.4 // indirect
20+
code.cloudfoundry.org/tlsconfig v0.24.0 // indirect
2221
github.com/SermoDigital/jose v0.9.2-0.20161205224733-f6df55f235c2 // indirect
2322
github.com/blang/semver/v4 v4.0.0 // indirect
2423
github.com/bmatcuk/doublestar v1.3.4 // indirect
@@ -27,31 +26,36 @@ require (
2726
github.com/cloudfoundry/bosh-utils v0.0.390 // indirect
2827
github.com/cppforlife/go-patch v0.1.0 // indirect
2928
github.com/ess/debuggable v1.0.0 // indirect
30-
github.com/ess/dry v1.0.0 // indirect
31-
github.com/fatih/color v1.16.0 // indirect
29+
github.com/fatih/color v1.18.0 // indirect
3230
github.com/fsnotify/fsnotify v1.7.0 // indirect
33-
github.com/go-logr/logr v1.4.1 // indirect
31+
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
32+
github.com/go-logr/logr v1.4.2 // indirect
3433
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
3534
github.com/gogo/protobuf v1.3.2 // indirect
36-
github.com/google/go-cmp v0.6.0 // indirect
37-
github.com/google/pprof v0.0.0-20240509144519-723abb6459b7 // indirect
35+
github.com/google/go-cmp v0.7.0 // indirect
36+
github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 // indirect
3837
github.com/google/uuid v1.6.0 // indirect
39-
github.com/jessevdk/go-flags v1.5.0 // indirect
38+
github.com/jessevdk/go-flags v1.6.1 // indirect
39+
github.com/kr/pretty v0.3.1 // indirect
4040
github.com/lunixbochs/vtclean v1.0.0 // indirect
41-
github.com/mattn/go-colorable v0.1.13 // indirect
41+
github.com/mattn/go-colorable v0.1.14 // indirect
4242
github.com/mattn/go-isatty v0.0.20 // indirect
43-
github.com/mattn/go-runewidth v0.0.15 // indirect
43+
github.com/mattn/go-runewidth v0.0.16 // indirect
4444
github.com/nxadm/tail v1.4.11 // indirect
4545
github.com/onsi/ginkgo v1.16.5 // indirect
4646
github.com/rivo/uniseg v0.2.0 // indirect
47+
github.com/rogpeppe/go-internal v1.10.0 // indirect
4748
github.com/sirupsen/logrus v1.9.3 // indirect
4849
github.com/vito/go-interact v0.0.0-20171111012221-fa338ed9e9ec // indirect
49-
golang.org/x/crypto v0.23.0 // indirect
50-
golang.org/x/net v0.25.0 // indirect
51-
golang.org/x/sys v0.20.0 // indirect
52-
golang.org/x/term v0.20.0 // indirect
53-
golang.org/x/text v0.15.0 // indirect
54-
golang.org/x/tools v0.21.0 // indirect
50+
github.com/x448/float16 v0.8.4 // indirect
51+
go.uber.org/automaxprocs v1.6.0 // indirect
52+
golang.org/x/crypto v0.37.0 // indirect
53+
golang.org/x/net v0.39.0 // indirect
54+
golang.org/x/sys v0.32.0 // indirect
55+
golang.org/x/term v0.31.0 // indirect
56+
golang.org/x/text v0.24.0 // indirect
57+
golang.org/x/tools v0.31.0 // indirect
58+
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
5559
gopkg.in/cheggaaa/pb.v1 v1.0.28 // indirect
5660
gopkg.in/inf.v0 v0.9.1 // indirect
5761
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect

0 commit comments

Comments
 (0)