From a8f5728aa4640cdfcbb34e7cf428be1127723358 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 26 Feb 2020 00:48:00 +0000 Subject: [PATCH] Update golang Docker tag to v1.14 --- .drone.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index 2368ee4..9fc0804 100644 --- a/.drone.yml +++ b/.drone.yml @@ -10,7 +10,7 @@ platform: steps: - name: staticcheck pull: always - image: golang:1.13 + image: golang:1.14 commands: - go run honnef.co/go/tools/cmd/staticcheck ./... volumes: @@ -19,7 +19,7 @@ steps: - name: lint pull: always - image: golang:1.13 + image: golang:1.14 commands: - go run golang.org/x/lint/golint -set_exit_status ./... volumes: @@ -28,7 +28,7 @@ steps: - name: vet pull: always - image: golang:1.13 + image: golang:1.14 commands: - go vet ./... volumes: @@ -37,7 +37,7 @@ steps: - name: test pull: always - image: golang:1.13 + image: golang:1.14 commands: - go test -cover -v ./... volumes: