From 8c94adf050bb34fe3a9eea590a228a34c3b4d051 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 6 Jul 2022 22:16:48 -0400 Subject: [PATCH] deps(conftest): 0.32.1 -> 0.33.0 Signed-off-by: Rui Chen --- Dockerfile | 2 +- Dockerfile.dev | 2 +- testing/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index a445617ee5..68c633325a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,7 +35,7 @@ RUN AVAILABLE_TERRAFORM_VERSIONS="0.11.15 0.12.31 0.13.7 0.14.11 0.15.5 1.0.11 1 done && \ ln -s /usr/local/bin/tf/versions/${DEFAULT_TERRAFORM_VERSION}/terraform /usr/local/bin/terraform -ENV DEFAULT_CONFTEST_VERSION=0.32.1 +ENV DEFAULT_CONFTEST_VERSION=0.33.0 RUN AVAILABLE_CONFTEST_VERSIONS="${DEFAULT_CONFTEST_VERSION}" && \ case ${TARGETPLATFORM} in \ diff --git a/Dockerfile.dev b/Dockerfile.dev index 1d0be5817b..9d0ed33b6f 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.32.1 +ENV DEFAULT_CONFTEST_VERSION=0.33.0 WORKDIR /atlantis/src diff --git a/testing/Dockerfile b/testing/Dockerfile index 07571d93ff..7703c54c23 100644 --- a/testing/Dockerfile +++ b/testing/Dockerfile @@ -12,7 +12,7 @@ RUN case $(uname -m) in x86_64|amd64) ARCH="amd64" ;; aarch64|arm64|armv7l) ARCH rm terraform.zip # Install conftest -ENV CONFTEST_VERSION=0.32.1 +ENV CONFTEST_VERSION=0.33.0 RUN case $(uname -m) in x86_64|amd64) ARCH="x86_64" ;; aarch64|arm64|armv7l) ARCH="arm64" ;; esac && \ curl -LOs https://github.com/open-policy-agent/conftest/releases/download/v${CONFTEST_VERSION}/conftest_${CONFTEST_VERSION}_Linux_${ARCH}.tar.gz && \ curl -LOs https://github.com/open-policy-agent/conftest/releases/download/v${CONFTEST_VERSION}/checksums.txt && \