Skip to content

Commit a94e5c3

Browse files
bump k8s versions to 1.26 (operator-framework#112)
1 parent 1ea073b commit a94e5c3

File tree

4 files changed

+437
-50
lines changed

4 files changed

+437
-50
lines changed

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
jobs:
66
lint:
77
name: lint
8-
runs-on: ubuntu-18.04
8+
runs-on: ubuntu-22.04
99
steps:
1010
- uses: actions/setup-go@v2
1111
with:

.github/workflows/test-unit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
jobs:
66
unit:
77
name: unit
8-
runs-on: ubuntu-18.04
8+
runs-on: ubuntu-22.04
99
steps:
1010
- uses: actions/setup-go@v2
1111
with:

go.mod

+17-12
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,29 @@ 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.19.0
10-
k8s.io/apimachinery v0.25.0
11-
sigs.k8s.io/kubebuilder/v3 v3.7.1-0.20220923133227-91a1afa8fe9e
9+
github.com/onsi/gomega v1.24.2
10+
k8s.io/apimachinery v0.26.2
11+
sigs.k8s.io/kubebuilder/v3 v3.9.0
12+
)
13+
14+
require (
15+
github.com/google/go-cmp v0.5.9 // indirect
16+
gopkg.in/yaml.v3 v3.0.1 // indirect
1217
)
1318

1419
require (
1520
github.com/fsnotify/fsnotify v1.5.1 // indirect
16-
github.com/gobuffalo/flect v0.2.5 // indirect
21+
github.com/gobuffalo/flect v1.0.0 // indirect
1722
github.com/nxadm/tail v1.4.8 // indirect
18-
github.com/sirupsen/logrus v1.8.1
19-
github.com/spf13/afero v1.6.0
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
23-
golang.org/x/text v0.3.7 // indirect
24-
golang.org/x/tools v0.1.12 // indirect
23+
github.com/sirupsen/logrus v1.9.0
24+
github.com/spf13/afero v1.9.3
25+
golang.org/x/mod v0.7.0 // indirect
26+
golang.org/x/net v0.7.0 // indirect
27+
golang.org/x/sys v0.5.0 // indirect
28+
golang.org/x/text v0.7.0 // indirect
29+
golang.org/x/tools v0.5.0 // indirect
2530
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
2631
gopkg.in/yaml.v2 v2.4.0 // indirect
27-
k8s.io/utils v0.0.0-20220728103510-ee6ede2d64ed // indirect
32+
k8s.io/utils v0.0.0-20221107191617-1a15be271d1d // indirect
2833
sigs.k8s.io/yaml v1.3.0 // indirect
2934
)

0 commit comments

Comments
 (0)