Skip to content

Commit 331f0ec

Browse files
authored
bump golang version to 1.20 (#133)
Fixes #127 Signed-off-by: Arko Dasgupta <[email protected]>
1 parent ce7927a commit 331f0ec

File tree

3 files changed

+74
-3
lines changed

3 files changed

+74
-3
lines changed

Diff for: .github/workflows/release.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ jobs:
1414

1515
- uses: actions/setup-go@v2
1616
with:
17-
go-version: '1.17'
17+
go-version: 1.20.x
18+
cache: true
1819

1920
- uses: actions/cache@v2
2021
with:

Diff for: go.mod

+72-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/tetratelabs/getmesh
22

3-
go 1.16
3+
go 1.20
44

55
require (
66
cloud.google.com/go/security v1.1.0
@@ -25,6 +25,77 @@ require (
2525
k8s.io/client-go v0.22.3
2626
)
2727

28+
require (
29+
cloud.google.com/go v0.97.0 // indirect
30+
cloud.google.com/go/logging v1.4.2 // indirect
31+
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
32+
github.com/Azure/go-autorest/autorest v0.11.18 // indirect
33+
github.com/Azure/go-autorest/autorest/adal v0.9.13 // indirect
34+
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
35+
github.com/Azure/go-autorest/logger v0.2.1 // indirect
36+
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
37+
github.com/beorn7/perks v1.0.1 // indirect
38+
github.com/cespare/xxhash/v2 v2.1.1 // indirect
39+
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
40+
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
41+
github.com/davecgh/go-spew v1.1.1 // indirect
42+
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
43+
github.com/evanphx/json-patch v4.11.0+incompatible // indirect
44+
github.com/form3tech-oss/jwt-go v3.2.3+incompatible // indirect
45+
github.com/go-logr/logr v0.4.0 // indirect
46+
github.com/gogo/protobuf v1.3.2 // indirect
47+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
48+
github.com/google/go-cmp v0.5.6 // indirect
49+
github.com/google/gofuzz v1.2.0 // indirect
50+
github.com/googleapis/gax-go/v2 v2.1.1 // indirect
51+
github.com/googleapis/gnostic v0.5.5 // indirect
52+
github.com/hashicorp/go-version v1.2.0 // indirect
53+
github.com/imdario/mergo v0.3.5 // indirect
54+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
55+
github.com/jaegertracing/jaeger v1.15.1 // indirect
56+
github.com/jmespath/go-jmespath v0.4.0 // indirect
57+
github.com/json-iterator/go v1.1.11 // indirect
58+
github.com/mattn/go-runewidth v0.0.9 // indirect
59+
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
60+
github.com/mitchellh/mapstructure v1.4.1 // indirect
61+
github.com/moby/spdystream v0.2.0 // indirect
62+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
63+
github.com/modern-go/reflect2 v1.0.1 // indirect
64+
github.com/natefinch/lumberjack v2.0.0+incompatible // indirect
65+
github.com/openshift/api v0.0.0-20200221181648-8ce0047d664f // indirect
66+
github.com/pkg/errors v0.9.1 // indirect
67+
github.com/pmezard/go-difflib v1.0.0 // indirect
68+
github.com/prometheus/client_golang v1.11.0 // indirect
69+
github.com/prometheus/client_model v0.2.0 // indirect
70+
github.com/prometheus/common v0.26.0 // indirect
71+
github.com/prometheus/procfs v0.6.0 // indirect
72+
github.com/rs/zerolog v1.20.0 // indirect
73+
github.com/russross/blackfriday/v2 v2.0.1 // indirect
74+
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
75+
github.com/stretchr/objx v0.2.0 // indirect
76+
go.opencensus.io v0.23.0 // indirect
77+
go.uber.org/atomic v1.7.0 // indirect
78+
go.uber.org/multierr v1.6.0 // indirect
79+
go.uber.org/zap v1.19.1 // indirect
80+
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83 // indirect
81+
golang.org/x/net v0.0.0-20210614182718-04defd469f4e // indirect
82+
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f // indirect
83+
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect
84+
golang.org/x/text v0.3.6 // indirect
85+
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect
86+
google.golang.org/api v0.58.0 // indirect
87+
google.golang.org/appengine v1.6.7 // indirect
88+
google.golang.org/grpc v1.40.0 // indirect
89+
gopkg.in/inf.v0 v0.9.1 // indirect
90+
gopkg.in/square/go-jose.v2 v2.5.1 // indirect
91+
gopkg.in/yaml.v2 v2.4.0 // indirect
92+
k8s.io/klog/v2 v2.9.0 // indirect
93+
k8s.io/kube-openapi v0.0.0-20210421082810-95288971da7e // indirect
94+
k8s.io/utils v0.0.0-20210819203725-bdf08cb9a70a // indirect
95+
sigs.k8s.io/structured-merge-diff/v4 v4.1.2 // indirect
96+
sigs.k8s.io/yaml v1.3.0 // indirect
97+
)
98+
2899
replace github.com/tetratelabs/getmesh => ./
29100

30101
replace github.com/kiali/kiali => github.com/kiali/kiali v1.29.1-0.20210125202741-72d2ce2fceb5

Diff for: go.sum

-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ github.com/bketelsen/crypt v0.0.4/go.mod h1:aI6NrJ0pMGgvZKL1iVgXLnfIFJtfV+bKCoqO
112112
github.com/casbin/casbin/v2 v2.1.2/go.mod h1:YcPU1XXisHhLzuxH9coDNf2FbKpjGlbCg3n9yuLkIJQ=
113113
github.com/cenkalti/backoff v2.2.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM=
114114
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
115-
github.com/cespare/xxhash v1.1.0 h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko=
116115
github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc=
117116
github.com/cespare/xxhash/v2 v2.1.1 h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY=
118117
github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=

0 commit comments

Comments
 (0)