File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2121 # We do this instead of setting --default-tf-version because setting
2222 # that flag starts the download asynchronously so we'd have a race
2323 # condition.
24- TERRAFORM_VERSION : 0.12.25
24+ TERRAFORM_VERSION : 0.12.26
2525 steps :
2626 - checkout
2727 - run : make build-service
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM runatlantis/atlantis-base:v3.3
33LABEL authors="Anubhav Mishra, Luke Kysow"
44
55# install terraform binaries
6- ENV DEFAULT_TERRAFORM_VERSION=0.12.25
6+ ENV DEFAULT_TERRAFORM_VERSION=0.12.26
77
88# In the official Atlantis image we only have the latest of each Terraform version.
99RUN AVAILABLE_TERRAFORM_VERSIONS="0.8.8 0.9.11 0.10.8 0.11.14 ${DEFAULT_TERRAFORM_VERSION}" && \
Original file line number Diff line number Diff line change 55FROM circleci/golang:1.14
66
77# Install Terraform
8- ENV TERRAFORM_VERSION=0.12.25
8+ ENV TERRAFORM_VERSION=0.12.26
99RUN curl -LOks https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip && \
1010 sudo mkdir -p /usr/local/bin/tf/versions/${TERRAFORM_VERSION} && \
1111 sudo unzip terraform_${TERRAFORM_VERSION}_linux_amd64.zip -d /usr/local/bin/tf/versions/${TERRAFORM_VERSION} && \
You can’t perform that action at this time.
0 commit comments