Update golang Docker tag to v1.15

This commit is contained in:
Renovate Bot 2020-08-26 11:53:42 +00:00 committed by Don
parent 29db00764f
commit d58d602210
1 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@ platform:
steps: steps:
- name: staticcheck - name: staticcheck
pull: always pull: always
image: golang:1.14 image: golang:1.15
commands: commands:
- go run honnef.co/go/tools/cmd/staticcheck ./... - go run honnef.co/go/tools/cmd/staticcheck ./...
volumes: volumes:
@ -19,7 +19,7 @@ steps:
- name: lint - name: lint
pull: always pull: always
image: golang:1.14 image: golang:1.15
commands: commands:
- go run golang.org/x/lint/golint -set_exit_status ./... - go run golang.org/x/lint/golint -set_exit_status ./...
volumes: volumes:
@ -28,7 +28,7 @@ steps:
- name: vet - name: vet
pull: always pull: always
image: golang:1.14 image: golang:1.15
commands: commands:
- go vet ./... - go vet ./...
volumes: volumes:
@ -37,7 +37,7 @@ steps:
- name: test - name: test
pull: always pull: always
image: golang:1.14 image: golang:1.15
commands: commands:
- go test -cover -v ./... - go test -cover -v ./...
volumes: volumes: