Skip to content

Commit f085b44

Browse files
committed
[create-pull-request] automated change
1 parent 0cea1a7 commit f085b44

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Dockerfile

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

15-
ENV TERRAGRUNT_VERSION=0.28.20
15+
ENV TERRAGRUNT_VERSION=0.28.24
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.10
22+
ENV TERRAFORM_VERSION=0.15.0
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 && \
@@ -33,7 +33,7 @@ RUN curl -fsSL "https://codeload.github.com/open-policy-agent/opa/tar.gz/v${OPA_
3333
go build && \
3434
mv opa /usr/local/bin/
3535

36-
ENV CONFTEST_VERSION=0.23.0
36+
ENV CONFTEST_VERSION=0.24.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

+3-3
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.10-blueviolet)
5-
![](https://img.shields.io/badge/Terragrunt-0.28.20-blue)
4+
![](https://img.shields.io/badge/Terraform-0.15.0-blueviolet)
5+
![](https://img.shields.io/badge/Terragrunt-0.28.24-blue)
66
![](https://img.shields.io/badge/opa-0.27.1-lightgrey)
7-
![](https://img.shields.io/badge/conftest-0.23.0-blue)
7+
![](https://img.shields.io/badge/conftest-0.24.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)