go: bump minimal dependency to 1.14.4

due to major bugfixes in the .4 release
This commit is contained in:
@RubenKelevra 2020-06-05 03:15:57 +02:00
parent 0cdde03824
commit 179bed8f60
3 changed files with 4 additions and 4 deletions

View File

@ -33,7 +33,7 @@ default_environment: &default_environment
executors:
golang:
docker:
- image: circleci/golang:1.14.2
- image: circleci/golang:1.14.4
working_directory: ~/ipfs/go-ipfs
environment:
<<: *default_environment
@ -60,7 +60,7 @@ executors:
E2E_IPFSD_TYPE: go
dockerizer:
docker:
- image: circleci/golang:1.14.2
- image: circleci/golang:1.14.4
environment:
IMAGE_NAME: ipfs/go-ipfs
WIP_IMAGE_TAG: wip

View File

@ -1,4 +1,4 @@
FROM golang:1.14.2-buster
FROM golang:1.14.4-buster
LABEL maintainer="Steven Allen <steven@stebalien.com>"
# Install deps

View File

@ -1,5 +1,5 @@
# golang utilities
GO_MIN_VERSION = 1.14.2
GO_MIN_VERSION = 1.14.4
export GO111MODULE=on