@cryptotaxi247 / kubo / commits / f61e2832a

upgrade to go 1.14.2

@RubenKelevra committed Apr 10, 2020 at 00:32 UTC f61e2832a16064581de612465167a5ca1b7a161b
3 files changed +4 -4
.circleci/config.yml
+2 -2
@@ -33,7 +33,7 @@ default_environment: &default_environment
33 executors:
34 golang:
35 docker:
36 - - image: circleci/golang:1.13.8
36 + - image: circleci/golang:1.14.2
37 working_directory: ~/ipfs/go-ipfs
38 environment:
39 <<: *default_environment
@@ -60,7 +60,7 @@ executors:
60 E2E_IPFSD_TYPE: go
61 dockerizer:
62 docker:
63 - - image: circleci/golang:1.13.8
63 + - image: circleci/golang:1.14.2
64 environment:
65 IMAGE_NAME: ipfs/go-ipfs
66 WIP_IMAGE_TAG: wip
Dockerfile
+1 -1
@@ -1,4 +1,4 @@
1 -FROM golang:1.13.10-buster
1 +FROM golang:1.14.2-buster
2 LABEL maintainer="Steven Allen <steven@stebalien.com>"
3
4 # Install deps
mk/golang.mk
+1 -1
@@ -1,5 +1,5 @@
1 # golang utilities
2 -GO_MIN_VERSION = 1.13.8
2 +GO_MIN_VERSION = 1.14.2
3 export GO111MODULE=on
4
5