diff --git a/go.mod b/go.mod index 1cd5286..6b90380 100644 --- a/go.mod +++ b/go.mod @@ -1,13 +1,15 @@ module github.com/puellanivis/breton -go 1.13 +go 1.14 require ( - github.com/aws/aws-sdk-go v1.29.4 + github.com/aws/aws-sdk-go v1.29.14 + github.com/golang/protobuf v1.3.4 github.com/pkg/errors v0.9.1 github.com/pkg/sftp v1.11.0 github.com/prometheus/client_golang v1.4.1 - golang.org/x/crypto v0.0.0-20200214034016-1d94cc7ab1c6 - golang.org/x/net v0.0.0-20200202094626-16171245cfb2 + golang.org/x/crypto v0.0.0-20200221231518-2aa609cf4a9d + golang.org/x/net v0.0.0-20200301022130-244492dfa37a golang.org/x/text v0.3.2 + google.golang.org/grpc v1.27.1 ) diff --git a/masher/Dockerfile b/masher/Dockerfile index 1e478c1..a574cae 100644 --- a/masher/Dockerfile +++ b/masher/Dockerfile @@ -1,6 +1,6 @@ # This docker image builds upon the golang docker image to support a more automated process for building # golang files. -FROM golang:1.13 +FROM golang:1.14 MAINTAINER Cassondra Foesch # Setup various environment and argument settings which define the building environment. @@ -29,7 +29,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ # However, I don’t think it makes sense to use older version, better to be able to advance as it releases outselves. RUN mkdir -p /usr/bin && \ cd /usr && \ - curl -sS -L https://github.com/google/protobuf/releases/download/v3.11.2/protoc-3.11.2-linux-x86_64.zip | \ + curl -sS -L https://github.com/google/protobuf/releases/download/v3.11.4/protoc-3.11.4-linux-x86_64.zip | \ bsdtar -xvf- --exclude=readme.txt && \ chmod 755 /usr/bin/protoc diff --git a/masher/masher b/masher/masher index b0f7ce1..0f7aa71 100755 --- a/masher/masher +++ b/masher/masher @@ -205,7 +205,7 @@ if which go > /dev/null 2>&1 ; then if [[ "$LINUX" != "--deb" ]]; then echo Found Local Go Version: $GO_VERSION case $GO_VERSION in - 1.13|1.13.*|1.13[a-z]*) + 1.14|1.14.*|1.14[a-z]*) LOCALTEST="true" esac fi