Skip to content

Commit

Permalink
build: update to latest Go 1.17
Browse files Browse the repository at this point in the history
- Travis update to latest two revisions (1.16.9, 1.17.2)
- Drone update to latest Go revision (1.17.2)
- Alpine docker update from 1.14-3.11 --> 1.17-3.14
  • Loading branch information
tydavis authored and abh committed Oct 12, 2021
1 parent 9012140 commit 78e787c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ steps:
memory: 100MiB

- name: test
image: golang:1.16.7
image: golang:1.17.2
volumes:
- name: cache
path: /go
Expand All @@ -35,7 +35,7 @@ steps:
memory: 512MiB

- name: goreleaser
image: golang:1.16.7
image: golang:1.17.2
resources:
requests:
cpu: 4000
Expand Down Expand Up @@ -116,7 +116,7 @@ name: publish-production

steps:
- name: download
image: golang:1.16.7
image: golang:1.17.2
commands:
- ./scripts/download-release ${DRONE_BUILD_PARENT} dist/
resources:
Expand All @@ -128,7 +128,7 @@ steps:
memory: 256MiB

- name: fury-publish
image: golang:1.16.7
image: golang:1.17.2
resources:
requests:
cpu: 250
Expand Down
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ language: go
go_import_path: github.com/abh/geodns

go:
- "1.12.3"
- "1.13.4"
- "1.16.9"
- "1.17.2"
- tip

before_install:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.14-alpine3.11 as build
FROM golang:1.17-alpine3.14 as build

RUN apk add --no-cache git tar

Expand Down

0 comments on commit 78e787c

Please sign in to comment.