Skip to content

Commit 82b95e4

Browse files
committed
Moved to Go 1.17
1 parent e6af804 commit 82b95e4

File tree

5 files changed

+16
-12
lines changed

5 files changed

+16
-12
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585

8686
darwin-amd64:
8787
docker:
88-
- image: cimg/go:1.16
88+
- image: cimg/go:1.17
8989
steps:
9090
- checkout
9191
- run:
@@ -107,7 +107,7 @@ jobs:
107107

108108
darwin-arm64:
109109
docker:
110-
- image: cimg/go:1.16
110+
- image: cimg/go:1.17
111111
steps:
112112
- checkout
113113
- run:
@@ -129,7 +129,7 @@ jobs:
129129

130130
linux-amd64:
131131
docker:
132-
- image: cimg/go:1.16
132+
- image: cimg/go:1.17
133133
steps:
134134
- checkout
135135
- run:
@@ -173,7 +173,7 @@ jobs:
173173

174174
linux-arm64:
175175
docker:
176-
- image: cimg/go:1.16
176+
- image: cimg/go:1.17
177177
steps:
178178
- checkout
179179
- run:
@@ -196,7 +196,7 @@ jobs:
196196
linux-amd64-apline:
197197
working_directory: /go/src/github.com/nsmithuk/local-kms
198198
docker:
199-
- image: golang:1.16-alpine
199+
- image: golang:1.17-alpine
200200
steps:
201201
- checkout
202202
- run:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.16-alpine AS build
1+
FROM golang:1.17-alpine AS build
22

33
RUN apk update && apk add git
44

Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.16-alpine
1+
FROM golang:1.17-alpine
22

33
RUN mkdir -p /go/src/github.com/nsmithuk/local-kms
44
COPY . /go/src/github.com/nsmithuk/local-kms

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ See: https://github.com/nsmithuk/local-kms/issues/4
260260

261261
### Prerequisites
262262

263-
Tested with Go 1.16
263+
Tested with Go 1.17
264264

265265
### Install
266266

go.mod

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
module github.com/nsmithuk/local-kms
22

3-
go 1.16
3+
go 1.17
44

55
require (
66
github.com/aws/aws-sdk-go v1.35.0
77
github.com/btcsuite/btcd v0.22.0-beta
8-
github.com/golang/snappy v0.0.1 // indirect
9-
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
108
github.com/satori/go.uuid v1.2.0
119
github.com/sirupsen/logrus v1.4.2
1210
github.com/syndtr/goleveldb v1.0.0
13-
golang.org/x/sys v0.0.0-20191210023423-ac6580df4449 // indirect
1411
gopkg.in/yaml.v2 v2.2.8
1512
)
13+
14+
require (
15+
github.com/golang/snappy v0.0.1 // indirect
16+
github.com/jmespath/go-jmespath v0.4.0 // indirect
17+
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
18+
golang.org/x/sys v0.0.0-20191210023423-ac6580df4449 // indirect
19+
)

0 commit comments

Comments
 (0)