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