From 3f83832be1d6cc5d28b890c0034ea81a7ef79c4c Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Mon, 20 Jan 2020 16:28:04 +0100 Subject: [PATCH] bump gotestsum v0.3.5 full diff: https://github.com/gotestyourself/gotestsum/compare/v0.3.4...v0.3.5 - gotestyourself/gotestsum#52 Add a --version flag that goreleaser will populate for us - gotestyourself/gotestsum#57 Identify and, filter or display coverage output Signed-off-by: Sebastiaan van Stijn --- dockerfiles/Dockerfile.dev | 2 +- dockerfiles/Dockerfile.e2e | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/Dockerfile.dev b/dockerfiles/Dockerfile.dev index b1f43a476c..c5dfbcb68f 100644 --- a/dockerfiles/Dockerfile.dev +++ b/dockerfiles/Dockerfile.dev @@ -20,7 +20,7 @@ RUN go get -d github.com/mjibson/esc && \ go build -v -o /usr/bin/esc . && \ rm -rf /go/src/* /go/pkg/* /go/bin/* -ARG GOTESTSUM_VERSION=0.3.4 +ARG GOTESTSUM_VERSION=0.3.5 RUN curl -Ls https://github.com/gotestyourself/gotestsum/releases/download/v${GOTESTSUM_VERSION}/gotestsum_${GOTESTSUM_VERSION}_linux_amd64.tar.gz -o gotestsum.tar.gz && \ tar -xf gotestsum.tar.gz gotestsum -C /usr/bin && \ rm gotestsum.tar.gz diff --git a/dockerfiles/Dockerfile.e2e b/dockerfiles/Dockerfile.e2e index ff7f6ace7b..61f789003c 100644 --- a/dockerfiles/Dockerfile.e2e +++ b/dockerfiles/Dockerfile.e2e @@ -18,7 +18,7 @@ ARG NOTARY_VERSION=v0.6.1 RUN curl -Ls https://github.com/theupdateframework/notary/releases/download/${NOTARY_VERSION}/notary-Linux-amd64 -o /usr/local/bin/notary \ && chmod +x /usr/local/bin/notary -ARG GOTESTSUM_VERSION=0.3.4 +ARG GOTESTSUM_VERSION=0.3.5 RUN curl -Ls https://github.com/gotestyourself/gotestsum/releases/download/v${GOTESTSUM_VERSION}/gotestsum_${GOTESTSUM_VERSION}_linux_amd64.tar.gz -o gotestsum.tar.gz \ && tar -xf gotestsum.tar.gz gotestsum \ && mv gotestsum /usr/local/bin/gotestsum \