From 60fe32243478b73175f4cba6797729e943916aaa Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Wed, 28 Jul 2021 19:40:47 +0200 Subject: [PATCH] e2e: update gotestsum to v1.7.0 Signed-off-by: Sebastiaan van Stijn --- dockerfiles/Dockerfile.e2e | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile.e2e b/dockerfiles/Dockerfile.e2e index 09f690ea74..9883331e4e 100644 --- a/dockerfiles/Dockerfile.e2e +++ b/dockerfiles/Dockerfile.e2e @@ -18,7 +18,7 @@ ARG NOTARY_VERSION=v0.6.1 RUN curl -fsSL 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.4.0 +ARG GOTESTSUM_VERSION=1.7.0 RUN curl -fsSL 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 \