Skip to content

Commit 77c9498

Browse files
committed
update golang version
1 parent 263bcd3 commit 77c9498

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/master.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v2
2020
- uses: actions/setup-go@v2
2121
with:
22-
go-version: '1.13.9'
22+
go-version: '1.14.6'
2323
stable: true
2424
- name: Download Dependencies
2525
run: go mod download
@@ -46,7 +46,7 @@ jobs:
4646
- uses: actions/checkout@v2
4747
- uses: actions/setup-go@v2
4848
with:
49-
go-version: '1.13.9'
49+
go-version: '1.14.6'
5050
stable: true
5151
- name: Install libvirt
5252
run: |
@@ -65,7 +65,7 @@ jobs:
6565
- uses: actions/checkout@v2
6666
- uses: actions/setup-go@v2
6767
with:
68-
go-version: '1.13.9'
68+
go-version: '1.14.6'
6969
stable: true
7070
- name: Install libvirt
7171
run: |

.github/workflows/pr.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v2
1818
- uses: actions/setup-go@v2
1919
with:
20-
go-version: '1.13.9'
20+
go-version: '1.14.6'
2121
stable: true
2222
- name: Download Dependencies
2323
run: go mod download
@@ -44,7 +44,7 @@ jobs:
4444
- uses: actions/checkout@v2
4545
- uses: actions/setup-go@v2
4646
with:
47-
go-version: '1.13.9'
47+
go-version: '1.14.6'
4848
stable: true
4949
- name: Install libvirt
5050
run: |
@@ -63,7 +63,7 @@ jobs:
6363
- uses: actions/checkout@v2
6464
- uses: actions/setup-go@v2
6565
with:
66-
go-version: '1.13.9'
66+
go-version: '1.14.6'
6767
stable: true
6868
- name: Install libvirt
6969
run: |

.travis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
os: linux
44
language: go
55
go:
6-
- 1.14.4
6+
- 1.14.6
77
env:
88
global:
99
- GOPROXY=https://proxy.golang.org
1010
matrix:
1111
include:
1212
- language: go
1313
name: Code Lint
14-
go: 1.14.4
14+
go: 1.14.6
1515
env:
1616
- TESTSUITE=lintall
1717
before_install:
@@ -20,7 +20,7 @@ matrix:
2020

2121
- language: go
2222
name: Unit Test
23-
go: 1.14.4
23+
go: 1.14.6
2424
env:
2525
- TESTSUITE=unittest
2626
before_install:
@@ -29,7 +29,7 @@ matrix:
2929

3030
- language: go
3131
name: Build
32-
go: 1.14.4
32+
go: 1.14.6
3333
script: make
3434
after_success:
3535
- bash <(curl -s https://codecov.io/bash)

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ DEB_VERSION ?= $(subst -,~,$(RAW_VERSION))
2929
RPM_VERSION ?= $(DEB_VERSION)
3030

3131
# used by hack/jenkins/release_build_and_upload.sh and KVM_BUILD_IMAGE, see also BUILD_IMAGE below
32-
GO_VERSION ?= 1.14.4
32+
GO_VERSION ?= 1.14.6
3333

3434
INSTALL_SIZE ?= $(shell du out/minikube-windows-amd64.exe | cut -f1)
3535
BUILDROOT_BRANCH ?= 2019.02.11
@@ -42,7 +42,7 @@ COMMIT ?= $(if $(shell git status --porcelain --untracked-files=no),"${COMMIT_NO
4242
HYPERKIT_BUILD_IMAGE ?= karalabe/xgo-1.12.x
4343
# NOTE: "latest" as of 2020-05-13. kube-cross images aren't updated as often as Kubernetes
4444
# https://github.com/kubernetes/kubernetes/blob/master/build/build-image/cross/VERSION
45-
BUILD_IMAGE ?= us.gcr.io/k8s-artifacts-prod/build-image/kube-cross:v$(GO_VERSION)-2
45+
BUILD_IMAGE ?= us.gcr.io/k8s-artifacts-prod/build-image/kube-cross:v$(GO_VERSION)-1
4646
ISO_BUILD_IMAGE ?= $(REGISTRY)/buildroot-image
4747
KVM_BUILD_IMAGE ?= $(REGISTRY)/kvm-build-image:$(GO_VERSION)
4848

hack/jenkins/common.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export KUBECONFIG="${TEST_HOME}/kubeconfig"
3131
export PATH=$PATH:"/usr/local/bin/:/usr/local/go/bin/:$GOPATH/bin"
3232

3333
# installing golang so we could do go get for gopogh
34-
sudo ./installers/check_install_golang.sh "1.14.4" "/usr/local" || true
34+
sudo ./installers/check_install_golang.sh "1.14.6" "/usr/local" || true
3535

3636
docker rm -f -v $(docker ps -aq) >/dev/null 2>&1 || true
3737
docker volume prune -f || true

0 commit comments

Comments
 (0)