Skip to content

Commit bf5f081

Browse files
committed
bump golang versions
1 parent 0f7be4f commit bf5f081

15 files changed

+15
-15
lines changed

Diff for: .github/workflows/build.yml

+1-1
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

Diff for: .github/workflows/docs.yml

+1-1
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

Diff for: .github/workflows/leaderboard.yml

+1-1
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

Diff for: .github/workflows/master.yml

+1-1
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

Diff for: .github/workflows/pr.yml

+1-1
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

Diff for: .github/workflows/pr_verified.yaml

+1-1
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

Diff for: .github/workflows/time-to-k8s-public-chart.yml

+1-1
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

Diff for: .github/workflows/time-to-k8s.yml

+1-1
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

Diff for: .github/workflows/translations.yml

+1-1
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

Diff for: .github/workflows/update-golang-version.yml

+1-1
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

Diff for: .github/workflows/update-golint-version.yml

+1-1
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

Diff for: .github/workflows/update-k8s-versions.yml

+1-1
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

Diff for: Makefile

+1-1
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

Diff for: go.mod

+1-1
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

Diff for: hack/jenkins/common.sh

+1-1
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)