Skip to content

Commit

Permalink
Upgrade go 1.14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kakkoyun committed Jun 11, 2020
1 parent 1fe5304 commit ec79fd1
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,23 @@ steps:
- mc mb --region=eu-west-1 minio/drone-cache-bucket

- name: build
image: golang:1.14.1-alpine3.11
image: golang:1.14.2-alpine3.11
commands:
- apk add --update make git
- make drone-cache
environment:
CGO_ENABLED: 0

- name: lint
image: golang:1.14.1-alpine3.11
image: golang:1.14.2-alpine3.11
commands:
- apk add --update make git curl
- make lint
environment:
CGO_ENABLED: 0

- name: test
image: golang:1.14.1-alpine3.11
image: golang:1.14.2-alpine3.11
commands:
- go test -mod=vendor -short -cover -tags=integration ./...
environment:
Expand Down
10 changes: 5 additions & 5 deletions DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ steps:
- 'vendor'

- name: build
image: golang:1.14.1-alpine3.11
image: golang:1.14.2-alpine3.11
pull: true
commands:
- apk add --update make git
Expand Down Expand Up @@ -160,7 +160,7 @@ steps:
path: /tmp/cache

- name: build
image: golang:1.14.1-alpine3.11
image: golang:1.14.2-alpine3.11
pull: true
commands:
- apk add --update make git
Expand Down Expand Up @@ -212,7 +212,7 @@ steps:
- 'vendor'

- name: build
image: golang:1.14.1-alpine3.11
image: golang:1.14.2-alpine3.11
pull: true
commands:
- apk add --update make git
Expand Down Expand Up @@ -261,7 +261,7 @@ steps:
- 'vendor'

- name: build
image: golang:1.14.1-alpine3.11
image: golang:1.14.2-alpine3.11
pull: true
commands:
- apk add --update make git
Expand Down Expand Up @@ -300,7 +300,7 @@ steps:
debug: true

- name: build
image: golang:1.14.1-alpine3.11
image: golang:1.14.2-alpine3.11
pull: true
commands:
- apk add --update make git
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This file is designed to only used by goreleaser.
FROM golang:1.14.1-alpine3.11 AS builder
FROM golang:1.14.2-alpine3.11 AS builder
RUN apk add --update --no-cache ca-certificates tzdata && update-ca-certificates

FROM scratch as runner
Expand Down
10 changes: 5 additions & 5 deletions docs/examples/drone.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ steps:
- 'vendor'

- name: build
image: golang:1.14.1-alpine3.11
image: golang:1.14.2-alpine3.11
pull: true
commands:
- apk add --update make git
Expand Down Expand Up @@ -74,7 +74,7 @@ steps:
path: /tmp/cache

- name: build
image: golang:1.14.1-alpine3.11
image: golang:1.14.2-alpine3.11
pull: true
commands:
- apk add --update make git
Expand Down Expand Up @@ -127,7 +127,7 @@ steps:
- 'vendor'

- name: build
image: golang:1.14.1-alpine3.11
image: golang:1.14.2-alpine3.11
pull: true
commands:
- apk add --update make git
Expand Down Expand Up @@ -175,7 +175,7 @@ steps:
- 'vendor'

- name: build
image: golang:1.14.1-alpine3.11
image: golang:1.14.2-alpine3.11
pull: true
commands:
- apk add --update make git
Expand Down Expand Up @@ -214,7 +214,7 @@ steps:
debug: true

- name: build
image: golang:1.14.1-alpine3.11
image: golang:1.14.2-alpine3.11
pull: true
commands:
- apk add --update make git
Expand Down

0 comments on commit ec79fd1

Please sign in to comment.