Skip to content

Commit

Permalink
Merge pull request #404 from checkr/zz/bump-go-version
Browse files Browse the repository at this point in the history
Bump to go1.15
  • Loading branch information
zhouzhuojie authored Sep 16, 2020
2 parents e6d7908 + b3a8070 commit 011e7cc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version: 2
jobs:
unit_test:
docker:
- image: golang:1.14
- image: golang:1.15
working_directory: /go/src/github.com/checkr/flagr
steps:
- checkout
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN make build_ui
######################################
# Prepare go_builder
######################################
FROM golang:1.14 as go_builder
FROM golang:1.15 as go_builder
WORKDIR /go/src/github.com/checkr/flagr
ADD . .
RUN make build
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/checkr/flagr

go 1.14
go 1.15

require (
cloud.google.com/go v0.37.4
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/Dockerfile-Integration-Test
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
######################################
# Prepare go_builder
######################################
FROM golang:1.14 as go_builder
FROM golang:1.15 as go_builder
WORKDIR /go/src/github.com/checkr/flagr
ADD . .
RUN make build
Expand Down

0 comments on commit 011e7cc

Please sign in to comment.