From c2e245deaec96416171c84080986a840da6cd883 Mon Sep 17 00:00:00 2001 From: rui Date: Sun, 19 Sep 2021 00:29:38 -0400 Subject: [PATCH] deps: conftest 0.28.0 (#1819) Signed-off-by: Rui Chen --- Dockerfile.dev | 2 +- testing/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.dev b/Dockerfile.dev index 7726bb08d0..a0ff840d62 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,6 +1,6 @@ FROM ghcr.io/runatlantis/atlantis:latest COPY atlantis /usr/local/bin/atlantis # TODO: remove this once we get this in the base image -ENV DEFAULT_CONFTEST_VERSION=0.27.0 +ENV DEFAULT_CONFTEST_VERSION=0.28.0 WORKDIR /atlantis/src diff --git a/testing/Dockerfile b/testing/Dockerfile index 7869ce256f..2634bc7593 100644 --- a/testing/Dockerfile +++ b/testing/Dockerfile @@ -9,7 +9,7 @@ RUN curl -LOks https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/ter rm terraform_${TERRAFORM_VERSION}_linux_amd64.zip # Install conftest -ENV CONFTEST_VERSION=0.27.0 +ENV CONFTEST_VERSION=0.28.0 RUN curl -LOs https://github.com/open-policy-agent/conftest/releases/download/v${CONFTEST_VERSION}/conftest_${CONFTEST_VERSION}_Linux_x86_64.tar.gz && \ curl -LOs https://github.com/open-policy-agent/conftest/releases/download/v${CONFTEST_VERSION}/checksums.txt && \ sed -n "/conftest_${CONFTEST_VERSION}_Linux_x86_64.tar.gz/p" checksums.txt | sha256sum -c && \