Skip to content

Commit

Permalink
bump golang versions
Browse files Browse the repository at this point in the history
  • Loading branch information
minikube-bot committed Dec 13, 2021
1 parent 80a3435 commit 1bd0349
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
- "!deploy/iso/**"
env:
GOPROXY: https://proxy.golang.org
GO_VERSION: '1.17.3'
GO_VERSION: '1.17.5'
jobs:
build_minikube:
runs-on: ubuntu-20.04
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- master
env:
GOPROXY: https://proxy.golang.org
GO_VERSION: '1.17.3'
GO_VERSION: '1.17.5'
jobs:
generate-docs:
runs-on: ubuntu-20.04
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/functional_verified.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:
- deleted
env:
GOPROXY: https://proxy.golang.org
GO_VERSION: '1.17.3'
GO_VERSION: '1.17.5'

jobs:
# Runs before all other jobs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/leaderboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
release:
types: [published]
env:
GO_VERSION: '1.17.3'
GO_VERSION: '1.17.5'
jobs:
update-leaderboard:
runs-on: ubuntu-20.04
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
- "!deploy/iso/**"
env:
GOPROXY: https://proxy.golang.org
GO_VERSION: '1.17.3'
GO_VERSION: '1.17.5'
jobs:
# Runs before all other jobs
# builds the minikube binaries
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
- "!deploy/iso/**"
env:
GOPROXY: https://proxy.golang.org
GO_VERSION: '1.17.3'
GO_VERSION: '1.17.5'
jobs:
# Runs before all other jobs
# builds the minikube binaries
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/time-to-k8s-public-chart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- cron: "0 2,14 * * *"
env:
GOPROXY: https://proxy.golang.org
GO_VERSION: '1.17.3'
GO_VERSION: '1.17.5'
jobs:
time-to-k8s-public-chart:
if: github.repository == 'kubernetes/minikube'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/time-to-k8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
types: [released]
env:
GOPROXY: https://proxy.golang.org
GO_VERSION: '1.17.3'
GO_VERSION: '1.17.5'
jobs:
benchmark:
runs-on: ubuntu-20.04
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/translations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- "translations/**"
env:
GOPROXY: https://proxy.golang.org
GO_VERSION: '1.17.3'
GO_VERSION: '1.17.5'
jobs:
unit_test:
runs-on: ubuntu-20.04
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-golang-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- cron: "0 9 * * 1"
env:
GOPROXY: https://proxy.golang.org
GO_VERSION: '1.17.3'
GO_VERSION: '1.17.5'
jobs:
bump-golang-version:
runs-on: ubuntu-20.04
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-golint-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- cron: "0 10 * * 1"
env:
GOPROXY: https://proxy.golang.org
GO_VERSION: '1.17.3'
GO_VERSION: '1.17.5'
jobs:
bump-golint-version:
runs-on: ubuntu-20.04
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-k8s-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- cron: "0 8 * * 1"
env:
GOPROXY: https://proxy.golang.org
GO_VERSION: '1.17.3'
GO_VERSION: '1.17.5'
jobs:
bump-k8s-versions:
runs-on: ubuntu-20.04
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-kubadm-constants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- cron: "0 6 * * 1"
env:
GOPROXY: https://proxy.golang.org
GO_VERSION: '1.17.3'
GO_VERSION: '1.17.5'
jobs:
bump-k8s-versions:
runs-on: ubuntu-20.04
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ RPM_REVISION ?= 0

# used by hack/jenkins/release_build_and_upload.sh and KVM_BUILD_IMAGE, see also BUILD_IMAGE below
# update this only by running `make update-golang-version`
GO_VERSION ?= 1.17.3
GO_VERSION ?= 1.17.5
# update this only by running `make update-golang-version`
GO_K8S_VERSION_PREFIX ?= v1.23.0
GO_K8S_VERSION_PREFIX ?= v1.24.0

# replace "x.y.0" => "x.y". kube-cross and golang.org/dl use different formats for x.y.0 go versions
KVM_GO_VERSION ?= $(GO_VERSION:.0=)
Expand Down
2 changes: 1 addition & 1 deletion hack/jenkins/installers/check_install_golang.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if (($# < 1)); then
exit 1
fi

VERSION_TO_INSTALL=1.17.3
VERSION_TO_INSTALL=1.17.5
INSTALL_PATH=${1}

function current_arch() {
Expand Down

0 comments on commit 1bd0349

Please sign in to comment.