Skip to content

Commit f025408

Browse files
bump k8s 1.25 and kb versions (#103)
* bump k8s 1.25 and kb versions * updated all depedencies
1 parent 229ea15 commit f025408

File tree

5 files changed

+32
-939
lines changed

5 files changed

+32
-939
lines changed

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010
- uses: actions/setup-go@v2
1111
with:
12-
go-version: 1.17
12+
go-version: 1.19
1313
- uses: actions/checkout@v2
1414
with:
1515
fetch-depth: 0

.github/workflows/test-unit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010
- uses: actions/setup-go@v2
1111
with:
12-
go-version: 1.17
12+
go-version: 1.19
1313
- uses: actions/checkout@v2
1414
with:
1515
fetch-depth: 0

go.mod

+9-10
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
module github.com/operator-framework/java-operator-plugins
22

3-
go 1.17
3+
go 1.19
44

55
require github.com/spf13/pflag v1.0.5
66

77
require (
88
github.com/onsi/ginkgo v1.16.5
9-
github.com/onsi/gomega v1.18.1
10-
k8s.io/apimachinery v0.24.0
11-
sigs.k8s.io/kubebuilder/v3 v3.0.0-alpha.0.0.20220608134342-eea565cb3f50
9+
github.com/onsi/gomega v1.19.0
10+
k8s.io/apimachinery v0.25.0
11+
sigs.k8s.io/kubebuilder/v3 v3.7.1-0.20220923133227-91a1afa8fe9e
1212
)
1313

1414
require (
@@ -17,14 +17,13 @@ require (
1717
github.com/nxadm/tail v1.4.8 // indirect
1818
github.com/sirupsen/logrus v1.8.1
1919
github.com/spf13/afero v1.6.0
20-
golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect
21-
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
22-
golang.org/x/sys v0.0.0-20220209214540-3681064d5158 // indirect
20+
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
21+
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
22+
golang.org/x/sys v0.0.0-20220919091848-fb04ddd9f9c8 // indirect
2323
golang.org/x/text v0.3.7 // indirect
24-
golang.org/x/tools v0.1.10-0.20220218145154-897bd77cd717 // indirect
25-
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
24+
golang.org/x/tools v0.1.12 // indirect
2625
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
2726
gopkg.in/yaml.v2 v2.4.0 // indirect
28-
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
27+
k8s.io/utils v0.0.0-20220728103510-ee6ede2d64ed // indirect
2928
sigs.k8s.io/yaml v1.3.0 // indirect
3029
)

0 commit comments

Comments
 (0)