Skip to content

Commit 5b7aac4

Browse files
authored
Merge pull request #128 from mattfenwick/go-1.19
Go 1.19
2 parents 3d7f9e1 + 433210e commit 5b7aac4

18 files changed

+211
-258
lines changed

.github/workflows/go.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Go
1616
uses: actions/setup-go@v2
1717
with:
18-
go-version: 1.18
18+
go-version: 1.19
1919

2020
- name: Build
2121
run: go build -v ./cmd/cyclonus/main.go

.github/workflows/kind_antrea.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Go
2121
uses: actions/setup-go@v2
2222
with:
23-
go-version: 1.18
23+
go-version: 1.19
2424
- name: Run Cyclonus
2525
working-directory: hack/kind
2626
run: CNI=antrea RUN_FROM_SOURCE=true FROM_SOURCE_ARGS="${{ github.event.inputs.cyclonus_args }}" ./run-cyclonus.sh

.github/workflows/kind_calico.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Go
2020
uses: actions/setup-go@v2
2121
with:
22-
go-version: 1.18
22+
go-version: 1.19
2323
- name: Run Cyclonus
2424
working-directory: hack/kind
2525
run: CNI=calico RUN_FROM_SOURCE=true FROM_SOURCE_ARGS="${{ github.event.inputs.cyclonus_args }}" ./run-cyclonus.sh

.github/workflows/kind_cilium.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Go
2020
uses: actions/setup-go@v2
2121
with:
22-
go-version: 1.18
22+
go-version: 1.19
2323
- name: Run Cyclonus
2424
working-directory: hack/kind
2525
run: CNI=cilium RUN_FROM_SOURCE=true FROM_SOURCE_ARGS="${{ github.event.inputs.cyclonus_args }}" ./run-cyclonus.sh

.github/workflows/kind_cni_from_source.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Go
2121
uses: actions/setup-go@v2
2222
with:
23-
go-version: 1.18
23+
go-version: 1.19
2424

2525
- name: Run Cyclonus
2626
working-directory: hack/kind

.github/workflows/kind_ovn.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Set up Go
2222
uses: actions/setup-go@v2
2323
with:
24-
go-version: 1.18
24+
go-version: 1.19
2525
- name: Run Cyclonus
2626
working-directory: hack/kind
2727
run: CNI=ovn-kubernetes RUN_FROM_SOURCE=true FROM_SOURCE_ARGS="${{ github.event.inputs.cyclonus_args }}" ./run-cyclonus.sh

cmd/worker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM k8s.gcr.io/e2e-test-images/agnhost:2.36
1+
FROM k8s.gcr.io/e2e-test-images/agnhost:2.43
22

33
ENTRYPOINT ["/worker"]
44

docs/developer-guide.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Setup
44

5-
- [Get set up with golang 1.18](https://golang.org/dl/)
5+
- [Get set up with golang 1.19](https://golang.org/dl/)
66
- clone this repo
77

88
git clone [email protected]:mattfenwick/cyclonus.git

go.mod

+28-27
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,64 @@
11
module github.com/mattfenwick/cyclonus
22

3-
go 1.18
3+
go 1.19
44

55
require (
6-
github.com/go-resty/resty/v2 v2.5.0
6+
github.com/go-resty/resty/v2 v2.7.0
77
github.com/jstemmer/go-junit-report v0.9.1
8-
github.com/mattfenwick/collections v0.1.7
9-
github.com/olekukonko/tablewriter v0.0.4
10-
github.com/onsi/ginkgo/v2 v2.1.4
11-
github.com/onsi/gomega v1.19.0
8+
github.com/mattfenwick/collections v0.2.3
9+
github.com/olekukonko/tablewriter v0.0.5
10+
github.com/onsi/ginkgo/v2 v2.5.1
11+
github.com/onsi/gomega v1.24.1
1212
github.com/pkg/errors v0.9.1
13-
github.com/sirupsen/logrus v1.8.1
14-
github.com/spf13/cobra v1.0.0
13+
github.com/sirupsen/logrus v1.9.0
14+
github.com/spf13/cobra v1.6.1
1515
golang.org/x/exp v0.0.0-20220706164943-b4a6d9510983
16-
k8s.io/api v0.24.2
17-
k8s.io/apimachinery v0.24.2
18-
k8s.io/client-go v0.24.2
16+
k8s.io/api v0.25.4
17+
k8s.io/apimachinery v0.25.4
18+
k8s.io/client-go v0.25.4
1919
sigs.k8s.io/yaml v1.2.0
2020
)
2121

2222
require (
23-
cloud.google.com/go v0.81.0 // indirect
23+
cloud.google.com/go v0.97.0 // indirect
2424
github.com/PuerkitoBio/purell v1.1.1 // indirect
2525
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
2626
github.com/davecgh/go-spew v1.1.1 // indirect
27-
github.com/emicklei/go-restful v2.9.5+incompatible // indirect
28-
github.com/go-logr/logr v1.2.0 // indirect
27+
github.com/emicklei/go-restful/v3 v3.8.0 // indirect
28+
github.com/go-logr/logr v1.2.3 // indirect
2929
github.com/go-openapi/jsonpointer v0.19.5 // indirect
3030
github.com/go-openapi/jsonreference v0.19.5 // indirect
3131
github.com/go-openapi/swag v0.19.14 // indirect
3232
github.com/gogo/protobuf v1.3.2 // indirect
3333
github.com/golang/protobuf v1.5.2 // indirect
3434
github.com/google/gnostic v0.5.7-v3refs // indirect
35+
github.com/google/go-cmp v0.5.9 // indirect
3536
github.com/google/gofuzz v1.1.0 // indirect
3637
github.com/imdario/mergo v0.3.11 // indirect
37-
github.com/inconshreveable/mousetrap v1.0.0 // indirect
38+
github.com/inconshreveable/mousetrap v1.0.1 // indirect
3839
github.com/josharian/intern v1.0.0 // indirect
3940
github.com/json-iterator/go v1.1.12 // indirect
4041
github.com/mailru/easyjson v0.7.6 // indirect
41-
github.com/mattn/go-runewidth v0.0.7 // indirect
42+
github.com/mattn/go-runewidth v0.0.9 // indirect
4243
github.com/moby/spdystream v0.2.0 // indirect
4344
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4445
github.com/modern-go/reflect2 v1.0.2 // indirect
4546
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
4647
github.com/spf13/pflag v1.0.5 // indirect
47-
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
48+
golang.org/x/net v0.2.0 // indirect
4849
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
49-
golang.org/x/sys v0.0.0-20220708085239-5a0f0661e09d // indirect
50-
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
51-
golang.org/x/text v0.3.7 // indirect
50+
golang.org/x/sys v0.2.0 // indirect
51+
golang.org/x/term v0.2.0 // indirect
52+
golang.org/x/text v0.4.0 // indirect
5253
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect
5354
google.golang.org/appengine v1.6.7 // indirect
54-
google.golang.org/protobuf v1.27.1 // indirect
55+
google.golang.org/protobuf v1.28.0 // indirect
5556
gopkg.in/inf.v0 v0.9.1 // indirect
5657
gopkg.in/yaml.v2 v2.4.0 // indirect
57-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
58-
k8s.io/klog/v2 v2.60.1 // indirect
59-
k8s.io/kube-openapi v0.0.0-20220328201542-3ee0da9b0b42 // indirect
60-
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
61-
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
62-
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
58+
gopkg.in/yaml.v3 v3.0.1 // indirect
59+
k8s.io/klog/v2 v2.70.1 // indirect
60+
k8s.io/kube-openapi v0.0.0-20220803162953-67bda5d908f1 // indirect
61+
k8s.io/utils v0.0.0-20220728103510-ee6ede2d64ed // indirect
62+
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
63+
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
6364
)

0 commit comments

Comments
 (0)