Skip to content

Commit

Permalink
ci: Use Go 1.17 in Drone
Browse files Browse the repository at this point in the history
  • Loading branch information
philipgough committed Apr 4, 2022
1 parent 6564aa8 commit be4fe69
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ platform:
steps:
- name: test
pull: always
image: golang:1.14
image: golang:1.17
commands:
- apt-get update && apt-get install unzip
- go test -v -race ./...
Expand All @@ -22,13 +22,13 @@ steps:

- name: lint
pull: always
image: golang:1.14
image: golang:1.17
commands:
- make lint

- name: build
pull: always
image: golang:1.14
image: golang:1.17
commands:
- go build -v ./cmd/up
environment:
Expand All @@ -38,7 +38,7 @@ steps:

- name: generate
pull: always
image: golang:1.14
image: golang:1.17
commands:
- make generate --always-make
- git diff --exit-code
Expand All @@ -49,7 +49,7 @@ steps:


- name: tags
image: golang:1.14
image: golang:1.17
commands:
- echo -n "$(git rev-parse --abbrev-ref HEAD | tr / -)-$(date +%Y-%m-%d)-$(git rev-parse --short HEAD),latest" > .tags
when:
Expand Down

0 comments on commit be4fe69

Please sign in to comment.