@cryptotaxi247 / kubo / commits / 179bed8f6

go: bump minimal dependency to 1.14.4

due to major bugfixes in the .4 release

@RubenKelevra committed Jun 5, 2020 at 03:15 UTC 179bed8f606cfed950ef5322792fcc72ddb8b590
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.14.2
36 + - image: circleci/golang:1.14.4
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.14.2
63 + - image: circleci/golang:1.14.4
64 environment:
65 IMAGE_NAME: ipfs/go-ipfs
66 WIP_IMAGE_TAG: wip
Dockerfile
+1 -1
@@ -1,4 +1,4 @@
1 -FROM golang:1.14.2-buster
1 +FROM golang:1.14.4-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.14.2
2 +GO_MIN_VERSION = 1.14.4
3 export GO111MODULE=on
4
5