Merge pull request #11 from drone-plugins/renovate/docker-golang-1.x

Update golang Docker tag to v1.14
This commit is contained in:
Thomas Boerger 2020-02-26 09:42:15 +01:00 committed by GitHub
commit 30ce1c10b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -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: