Skip to content

Commit

Permalink
Merge pull request #120 from yoheimuta/update-go-version-1.13
Browse files Browse the repository at this point in the history
chore: Update go version to latest
  • Loading branch information
yoheimuta authored Nov 30, 2019
2 parents 4b1c87f + 0d1ca36 commit ce0afbb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
lint:
docker:
- image: circleci/golang:1.12.5
- image: circleci/golang:1.13.4
environment:
GO111MODULE: "on"
working_directory: /go/src/github.com/yoheimuta/protolint
Expand All @@ -12,7 +12,7 @@ jobs:
- run: make test/lint
test:
docker:
- image: circleci/golang:1.12.5
- image: circleci/golang:1.13.4
environment:
GO111MODULE: "on"
working_directory: /go/src/github.com/yoheimuta/protolint
Expand All @@ -21,7 +21,7 @@ jobs:
- run: make test
deploy:
docker:
- image: circleci/golang:1.12.5
- image: circleci/golang:1.13.4
environment:
GO111MODULE: "on"
working_directory: /go/src/github.com/yoheimuta/protolint
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.protolint
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.12.9-alpine3.10 AS builder
FROM golang:1.13.4-alpine3.10 AS builder
RUN apk update
RUN apk add --virtual build-dependencies build-base git
ADD . ./protolint
Expand Down
3 changes: 0 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,13 @@ require (
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
github.com/stretchr/testify v1.4.0 // indirect
github.com/yoheimuta/go-protoparser v1.3.1-0.20191124070251-d3645978b4cf
golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3 // indirect
golang.org/x/net v0.0.0-20191112182307-2180aed22343 // indirect
golang.org/x/sys v0.0.0-20191113165036-4c7a9d0fe056 // indirect
golang.org/x/text v0.3.2 // indirect
golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135 // indirect
google.golang.org/genproto v0.0.0-20191114150713-6bbd007550de // indirect
google.golang.org/grpc v1.25.1
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/yaml.v2 v2.2.5
honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc // indirect
)

go 1.13

0 comments on commit ce0afbb

Please sign in to comment.