Skip to content

Commit cf90736

Browse files
committed
[create-pull-request] automated change
1 parent 1fa69ab commit cf90736

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,28 +12,28 @@ RUN apk add --no-cache --update \
1212
ca-certificates \
1313
curl
1414

15-
ENV TERRAGRUNT_VERSION=0.26.7
15+
ENV TERRAGRUNT_VERSION=0.28.2
1616
ENV TERRAGRUNT_DOWNLOAD_URL=https://github.com/gruntwork-io/terragrunt/releases/download
1717
RUN curl -fsSL -O ${TERRAGRUNT_DOWNLOAD_URL}/v${TERRAGRUNT_VERSION}/terragrunt_linux_amd64 && \
1818
curl -fsSL ${TERRAGRUNT_DOWNLOAD_URL}/v${TERRAGRUNT_VERSION}/SHA256SUMS | grep terragrunt_linux_amd64 > SHA256SUMS && \
1919
sha256sum -c SHA256SUMS && \
2020
mv terragrunt_linux_amd64 /usr/local/bin/terragrunt
2121

22-
ENV TERRAFORM_VERSION=0.14.3
22+
ENV TERRAFORM_VERSION=0.14.6
2323
ENV TERRAFORM_RELEASE_URL=https://releases.hashicorp.com/terraform
2424
RUN curl -fsSL -O ${TERRAFORM_RELEASE_URL}/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip && \
2525
curl -fsSL ${TERRAFORM_RELEASE_URL}/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_SHA256SUMS | grep terraform_${TERRAFORM_VERSION}_linux_amd64.zip > SHA256SUMS && \
2626
sha256sum -c SHA256SUMS && \
2727
unzip terraform_${TERRAFORM_VERSION}_linux_amd64.zip && \
2828
mv terraform /usr/local/bin/
2929

30-
ENV OPA_VERSION=0.25.2
30+
ENV OPA_VERSION=0.26.0
3131
WORKDIR /opa-build
3232
RUN curl -fsSL "https://codeload.github.com/open-policy-agent/opa/tar.gz/v${OPA_VERSION}" | tar xvz --strip-components=1 && \
3333
go build && \
3434
mv opa /usr/local/bin/
3535

36-
ENV CONFTEST_VERSION=0.22.0
36+
ENV CONFTEST_VERSION=0.23.0
3737
ENV CONFTEST_DOWNLOAD_URL=https://github.com/instrumenta/conftest/releases/download
3838
RUN curl -fsSL -O ${CONFTEST_DOWNLOAD_URL}/v${CONFTEST_VERSION}/conftest_${CONFTEST_VERSION}_Linux_x86_64.tar.gz && \
3939
curl -fsSL ${CONFTEST_DOWNLOAD_URL}/v${CONFTEST_VERSION}/checksums.txt | grep conftest_${CONFTEST_VERSION}_Linux_x86_64.tar.gz > checksums.txt && \

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# rrey/terraform-runner
22

33
![Build](https://github.com/rrey/terraform-runner/workflows/Docker%20Image%20CI/badge.svg)
4-
![](https://img.shields.io/badge/Terraform-0.14.3-blueviolet)
5-
![](https://img.shields.io/badge/Terragrunt-0.26.7-blue)
6-
![](https://img.shields.io/badge/opa-0.25.2-lightgrey)
7-
![](https://img.shields.io/badge/conftest-0.22.0-blue)
4+
![](https://img.shields.io/badge/Terraform-0.14.6-blueviolet)
5+
![](https://img.shields.io/badge/Terragrunt-0.28.2-blue)
6+
![](https://img.shields.io/badge/opa-0.26.0-lightgrey)
7+
![](https://img.shields.io/badge/conftest-0.23.0-blue)
88

99
This docker image aims at being a CI runner allowing to handle Terraform content.
1010
The image contains opinionated cool tools around Terraform like:

0 commit comments

Comments
 (0)