From 11ad08a0e80d7e4bea677c80df6cdf627b474230 Mon Sep 17 00:00:00 2001 From: Timo Reimann Date: Wed, 16 Sep 2020 16:19:37 +0200 Subject: [PATCH] Update Go to 1.15.2 --- .github/workflows/test.yaml | 4 ++-- Makefile | 2 +- go.mod | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 92508fb70..89c3ac51b 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -41,7 +41,7 @@ jobs: - name: Go setup uses: actions/setup-go@v1 with: - go-version: '1.14.2' + go-version: '1.15.2' - name: Run unit tests run: make all @@ -100,7 +100,7 @@ jobs: - name: Go setup uses: actions/setup-go@v1 with: - go-version: '1.14.2' + go-version: '1.15.2' - name: Install kustomize env: diff --git a/Makefile b/Makefile index d28cca98b..c29f0715f 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ NAME=do-csi-plugin OS ?= linux -GO_VERSION := 1.14 +GO_VERSION := 1.15.2 ifeq ($(strip $(shell git status --porcelain 2>/dev/null)),) GIT_TREE_STATE=clean else diff --git a/go.mod b/go.mod index 4aced0004..95cd73b35 100644 --- a/go.mod +++ b/go.mod @@ -52,6 +52,6 @@ replace ( k8s.io/sample-controller => k8s.io/sample-controller v0.0.0-20190805142825-b16fad786282 ) -go 1.14 +go 1.15 replace k8s.io/kubernetes => k8s.io/kubernetes v1.18.3