Skip to content

Commit 9fde6bf

Browse files
authored
chore: bump go 1.17, k8s 1.23, and kubebuilder 3.3 (#69)
* chore: bump go 1.17, k8s 1.23, and kubebuilder 3.3 * bump go 1.17 in CI
1 parent 200807a commit 9fde6bf

File tree

4 files changed

+92
-31
lines changed

4 files changed

+92
-31
lines changed

Diff for: .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.16
12+
go-version: 1.17
1313
- uses: actions/checkout@v2
1414
with:
1515
fetch-depth: 0

Diff for: .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.16
12+
go-version: 1.17
1313
- uses: actions/checkout@v2
1414
with:
1515
fetch-depth: 0

Diff for: go.mod

+22-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,29 @@
11
module github.com/operator-framework/java-operator-plugins
22

3-
go 1.16
3+
go 1.17
44

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

77
require (
8-
github.com/onsi/ginkgo v1.16.4
9-
github.com/onsi/gomega v1.15.0
10-
k8s.io/apimachinery v0.22.2
11-
sigs.k8s.io/kubebuilder/v3 v3.2.0
8+
github.com/onsi/ginkgo v1.16.5
9+
github.com/onsi/gomega v1.17.0
10+
k8s.io/apimachinery v0.23.0
11+
sigs.k8s.io/kubebuilder/v3 v3.3.0
12+
)
13+
14+
require (
15+
github.com/fsnotify/fsnotify v1.5.1 // indirect
16+
github.com/gobuffalo/flect v0.2.3 // indirect
17+
github.com/nxadm/tail v1.4.8 // indirect
18+
github.com/spf13/afero v1.6.0 // indirect
19+
golang.org/x/mod v0.4.2 // indirect
20+
golang.org/x/net v0.0.0-20210825183410-e898025ed96a // indirect
21+
golang.org/x/sys v0.0.0-20211029165221-6e7872819dc8 // indirect
22+
golang.org/x/text v0.3.7 // indirect
23+
golang.org/x/tools v0.1.6-0.20210820212750-d4cc65f0b2ff // indirect
24+
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
25+
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
26+
gopkg.in/yaml.v2 v2.4.0 // indirect
27+
k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b // indirect
28+
sigs.k8s.io/yaml v1.3.0 // indirect
1229
)

0 commit comments

Comments
 (0)