Skip to content

Commit 4f005bd

Browse files
authored
Merge pull request #12378 from minikube-bot/auto_bump_golang_version
bump golang version
2 parents 0ddf1e4 + 4da06f5 commit 4f005bd

15 files changed

+124
-15
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
- "!deploy/iso/**"
1313
env:
1414
GOPROXY: https://proxy.golang.org
15-
GO_VERSION: '1.16.7'
15+
GO_VERSION: '1.17'
1616
jobs:
1717
build_minikube:
1818
runs-on: ubuntu-18.04

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- master
77
env:
88
GOPROXY: https://proxy.golang.org
9-
GO_VERSION: '1.16.7'
9+
GO_VERSION: '1.17'
1010
jobs:
1111
generate-docs:
1212
runs-on: ubuntu-18.04

.github/workflows/leaderboard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
release:
88
types: [published]
99
env:
10-
GO_VERSION: '1.16.7'
10+
GO_VERSION: '1.17'
1111
jobs:
1212
update-leaderboard:
1313
runs-on: ubuntu-latest

.github/workflows/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
- "!deploy/iso/**"
1515
env:
1616
GOPROXY: https://proxy.golang.org
17-
GO_VERSION: '1.16.7'
17+
GO_VERSION: '1.17'
1818
jobs:
1919
# Runs before all other jobs
2020
# builds the minikube binaries

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
- "!deploy/iso/**"
1313
env:
1414
GOPROXY: https://proxy.golang.org
15-
GO_VERSION: '1.16.7'
15+
GO_VERSION: '1.17'
1616
jobs:
1717
# Runs before all other jobs
1818
# builds the minikube binaries

.github/workflows/pr_verified.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on:
2121
- deleted
2222
env:
2323
GOPROXY: https://proxy.golang.org
24-
GO_VERSION: '1.16.7'
24+
GO_VERSION: '1.17'
2525

2626
jobs:
2727
# Runs before all other jobs

.github/workflows/time-to-k8s-public-chart.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- cron: "0 2,14 * * *"
77
env:
88
GOPROXY: https://proxy.golang.org
9-
GO_VERSION: '1.16.7'
9+
GO_VERSION: '1.17'
1010
jobs:
1111
time-to-k8s-public-chart:
1212
runs-on: ubuntu-latest

.github/workflows/time-to-k8s.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
types: [released]
66
env:
77
GOPROXY: https://proxy.golang.org
8-
GO_VERSION: '1.16.7'
8+
GO_VERSION: '1.17'
99
jobs:
1010
benchmark:
1111
runs-on: ubuntu-20.04

.github/workflows/translations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- "translations/**"
77
env:
88
GOPROXY: https://proxy.golang.org
9-
GO_VERSION: '1.16.7'
9+
GO_VERSION: '1.17'
1010
jobs:
1111
unit_test:
1212
runs-on: ubuntu-20.04

.github/workflows/update-golang-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- cron: "0 9 * * 1"
77
env:
88
GOPROXY: https://proxy.golang.org
9-
GO_VERSION: '1.16.7'
9+
GO_VERSION: '1.17'
1010
jobs:
1111
bump-golang-version:
1212
runs-on: ubuntu-latest

.github/workflows/update-golint-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- cron: "0 10 * * 1"
77
env:
88
GOPROXY: https://proxy.golang.org
9-
GO_VERSION: '1.16.7'
9+
GO_VERSION: '1.17'
1010
jobs:
1111
bump-golint-version:
1212
runs-on: ubuntu-latest

.github/workflows/update-k8s-versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- cron: "0 8 * * 1"
77
env:
88
GOPROXY: https://proxy.golang.org
9-
GO_VERSION: '1.16.7'
9+
GO_VERSION: '1.17'
1010
jobs:
1111
bump-k8s-versions:
1212
runs-on: ubuntu-20.04

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ RPM_REVISION ?= 0
3333

3434
# used by hack/jenkins/release_build_and_upload.sh and KVM_BUILD_IMAGE, see also BUILD_IMAGE below
3535
# update this only by running `make update-golang-version`
36-
GO_VERSION ?= 1.16.7
36+
GO_VERSION ?= 1.17
3737
# update this only by running `make update-golang-version`
3838
GO_K8S_VERSION_PREFIX ?= v1.23.0
3939

go.mod

Lines changed: 110 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module k8s.io/minikube
22

3-
go 1.16
3+
go 1.17
44

55
require (
66
cloud.google.com/go/storage v1.15.0
@@ -98,6 +98,115 @@ require (
9898
sigs.k8s.io/sig-storage-lib-external-provisioner/v6 v6.3.0
9999
)
100100

101+
require (
102+
cloud.google.com/go v0.88.0 // indirect
103+
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
104+
github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd // indirect
105+
github.com/Microsoft/go-winio v0.5.0 // indirect
106+
github.com/StackExchange/wmi v1.2.1 // indirect
107+
github.com/VividCortex/ewma v1.1.1 // indirect
108+
github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af // indirect
109+
github.com/aws/aws-sdk-go v1.35.24 // indirect
110+
github.com/beorn7/perks v1.0.1 // indirect
111+
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
112+
github.com/census-instrumentation/opencensus-proto v0.2.1 // indirect
113+
github.com/cespare/xxhash/v2 v2.1.1 // indirect
114+
github.com/containerd/cgroups v1.0.1 // indirect
115+
github.com/containerd/containerd v1.5.2 // indirect
116+
github.com/containerd/stargz-snapshotter/estargz v0.7.0 // indirect
117+
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
118+
github.com/davecgh/go-spew v1.1.1 // indirect
119+
github.com/docker/cli v20.10.7+incompatible // indirect
120+
github.com/docker/distribution v2.7.1+incompatible // indirect
121+
github.com/docker/docker-credential-helpers v0.6.3 // indirect
122+
github.com/docker/go-connections v0.4.0 // indirect
123+
github.com/evanphx/json-patch v4.9.0+incompatible // indirect
124+
github.com/fatih/color v1.10.0 // indirect
125+
github.com/fogleman/gg v1.3.0 // indirect
126+
github.com/fsnotify/fsnotify v1.4.9 // indirect
127+
github.com/go-fonts/liberation v0.1.1 // indirect
128+
github.com/go-latex/latex v0.0.0-20210118124228-b3d85cf34e07 // indirect
129+
github.com/go-logr/logr v0.4.0 // indirect
130+
github.com/go-ole/go-ole v1.2.5 // indirect
131+
github.com/gogo/protobuf v1.3.2 // indirect
132+
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
133+
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
134+
github.com/golang/protobuf v1.5.2 // indirect
135+
github.com/golang/snappy v0.0.3 // indirect
136+
github.com/google/go-querystring v1.0.0 // indirect
137+
github.com/google/gofuzz v1.1.0 // indirect
138+
github.com/googleapis/gax-go/v2 v2.0.5 // indirect
139+
github.com/googleapis/gnostic v0.4.1 // indirect
140+
github.com/gookit/color v1.4.2 // indirect
141+
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
142+
github.com/hashicorp/go-safetemp v1.0.0 // indirect
143+
github.com/hashicorp/go-version v1.2.1 // indirect
144+
github.com/hashicorp/hcl v1.0.0 // indirect
145+
github.com/imdario/mergo v0.3.11 // indirect
146+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
147+
github.com/jmespath/go-jmespath v0.4.0 // indirect
148+
github.com/json-iterator/go v1.1.11 // indirect
149+
github.com/jstemmer/go-junit-report v0.9.1 // indirect
150+
github.com/klauspost/compress v1.13.0 // indirect
151+
github.com/magiconair/properties v1.8.5 // indirect
152+
github.com/mattn/go-colorable v0.1.8 // indirect
153+
github.com/mattn/go-runewidth v0.0.13 // indirect
154+
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
155+
github.com/miekg/dns v1.1.35 // indirect
156+
github.com/mitchellh/go-homedir v1.1.0 // indirect
157+
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
158+
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
159+
github.com/mitchellh/mapstructure v1.4.1 // indirect
160+
github.com/moby/spdystream v0.2.0 // indirect
161+
github.com/moby/sys/mountinfo v0.4.1 // indirect
162+
github.com/moby/term v0.0.0-20201216013528-df9cb8a40635 // indirect
163+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
164+
github.com/modern-go/reflect2 v1.0.1 // indirect
165+
github.com/opencontainers/image-spec v1.0.1 // indirect
166+
github.com/opencontainers/runc v1.0.0-rc95 // indirect
167+
github.com/pelletier/go-toml v1.9.3 // indirect
168+
github.com/phpdave11/gofpdf v1.4.2 // indirect
169+
github.com/prometheus/client_golang v1.7.1 // indirect
170+
github.com/prometheus/client_model v0.2.0 // indirect
171+
github.com/prometheus/common v0.10.0 // indirect
172+
github.com/prometheus/procfs v0.6.0 // indirect
173+
github.com/rivo/uniseg v0.2.0 // indirect
174+
github.com/russross/blackfriday/v2 v2.1.0 // indirect
175+
github.com/sirupsen/logrus v1.8.1 // indirect
176+
github.com/spf13/afero v1.6.0 // indirect
177+
github.com/spf13/cast v1.3.1 // indirect
178+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
179+
github.com/subosito/gotenv v1.2.0 // indirect
180+
github.com/tklauser/go-sysconf v0.3.7 // indirect
181+
github.com/tklauser/numcpus v0.2.3 // indirect
182+
github.com/ulikunitz/xz v0.5.8 // indirect
183+
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
184+
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
185+
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect
186+
go.opentelemetry.io/otel/metric v0.17.0 // indirect
187+
go.uber.org/atomic v1.7.0 // indirect
188+
go.uber.org/multierr v1.6.0 // indirect
189+
go.uber.org/zap v1.17.0 // indirect
190+
golang.org/x/image v0.0.0-20210216034530-4410531fe030 // indirect
191+
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
192+
golang.org/x/net v0.0.0-20210525063256-abc453219eb5 // indirect
193+
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect
194+
golang.org/x/tools v0.1.5 // indirect
195+
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
196+
google.golang.org/appengine v1.6.7 // indirect
197+
google.golang.org/genproto v0.0.0-20210722135532-667f2b7c528f // indirect
198+
google.golang.org/grpc v1.39.0 // indirect
199+
google.golang.org/protobuf v1.27.1 // indirect
200+
gopkg.in/inf.v0 v0.9.1 // indirect
201+
gopkg.in/ini.v1 v1.62.0 // indirect
202+
k8s.io/cluster-bootstrap v0.0.0 // indirect
203+
k8s.io/component-base v0.21.2 // indirect
204+
k8s.io/kube-openapi v0.0.0-20210305001622-591a79e4bda7 // indirect
205+
k8s.io/utils v0.0.0-20201110183641-67b214c5f920 // indirect
206+
sigs.k8s.io/structured-merge-diff/v4 v4.1.2 // indirect
207+
sigs.k8s.io/yaml v1.2.0 // indirect
208+
)
209+
101210
replace (
102211
git.apache.org/thrift.git => github.com/apache/thrift v0.0.0-20180902110319-2566ecd5d999
103212
github.com/briandowns/spinner => github.com/alonyb/spinner v1.12.7

hack/jenkins/common.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ else
9191
fi
9292

9393
# installing golang so we could do go get for gopogh
94-
./installers/check_install_golang.sh "1.16.7" "/usr/local" || true
94+
./installers/check_install_golang.sh "1.17" "/usr/local" || true
9595

9696
# install docker and kubectl if not present
9797
sudo ARCH="$ARCH" ./installers/check_install_docker.sh || true

0 commit comments

Comments
 (0)