Skip to content

Commit

Permalink
Moved to Go 1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
nsmithuk committed Dec 2, 2021
1 parent e6af804 commit 82b95e4
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 12 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:

darwin-amd64:
docker:
- image: cimg/go:1.16
- image: cimg/go:1.17
steps:
- checkout
- run:
Expand All @@ -107,7 +107,7 @@ jobs:

darwin-arm64:
docker:
- image: cimg/go:1.16
- image: cimg/go:1.17
steps:
- checkout
- run:
Expand All @@ -129,7 +129,7 @@ jobs:

linux-amd64:
docker:
- image: cimg/go:1.16
- image: cimg/go:1.17
steps:
- checkout
- run:
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:

linux-arm64:
docker:
- image: cimg/go:1.16
- image: cimg/go:1.17
steps:
- checkout
- run:
Expand All @@ -196,7 +196,7 @@ jobs:
linux-amd64-apline:
working_directory: /go/src/github.com/nsmithuk/local-kms
docker:
- image: golang:1.16-alpine
- image: golang:1.17-alpine
steps:
- checkout
- run:
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.16-alpine AS build
FROM golang:1.17-alpine AS build

RUN apk update && apk add git

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.16-alpine
FROM golang:1.17-alpine

RUN mkdir -p /go/src/github.com/nsmithuk/local-kms
COPY . /go/src/github.com/nsmithuk/local-kms
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ See: https://github.com/nsmithuk/local-kms/issues/4

### Prerequisites

Tested with Go 1.16
Tested with Go 1.17

### Install

Expand Down
12 changes: 8 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
module github.com/nsmithuk/local-kms

go 1.16
go 1.17

require (
github.com/aws/aws-sdk-go v1.35.0
github.com/btcsuite/btcd v0.22.0-beta
github.com/golang/snappy v0.0.1 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/satori/go.uuid v1.2.0
github.com/sirupsen/logrus v1.4.2
github.com/syndtr/goleveldb v1.0.0
golang.org/x/sys v0.0.0-20191210023423-ac6580df4449 // indirect
gopkg.in/yaml.v2 v2.2.8
)

require (
github.com/golang/snappy v0.0.1 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
golang.org/x/sys v0.0.0-20191210023423-ac6580df4449 // indirect
)

0 comments on commit 82b95e4

Please sign in to comment.