From 328746019177e241fec05c3ff9c9fe047457f771 Mon Sep 17 00:00:00 2001 From: Timo Reimann Date: Mon, 23 Nov 2020 22:29:27 +0100 Subject: [PATCH] Update Go to 1.15.5 Also bump actions/setup-go to v2.1.3. --- .github/workflows/test.yaml | 8 ++++---- Makefile | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index e48fb137..5f58e4ab 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -39,9 +39,9 @@ jobs: fetch-depth: 1 - name: Go setup - uses: actions/setup-go@8a3a76c # v2.1.2 + uses: actions/setup-go@37335c7 # v2.1.3 with: - go-version: '1.15.2' + go-version: '1.15.5' - name: Run unit tests run: make all @@ -98,9 +98,9 @@ jobs: fetch-depth: 1 - name: Go setup - uses: actions/setup-go@8a3a76c # v2.1.2 + uses: actions/setup-go@37335c7 # v2.1.3 with: - go-version: '1.15.2' + go-version: '1.15.5' - name: Install kustomize env: diff --git a/Makefile b/Makefile index 07088282..a8bc9b86 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ NAME=do-csi-plugin OS ?= linux -GO_VERSION := 1.15.2 +GO_VERSION := 1.15.5 ifeq ($(strip $(shell git status --porcelain 2>/dev/null)),) GIT_TREE_STATE=clean else