Skip to content

Commit a9873ae

Browse files
committed
Bump tf to v0.12.26
1 parent b8e813d commit a9873ae

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
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

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM runatlantis/atlantis-base:v3.3
33
LABEL 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.
99
RUN AVAILABLE_TERRAFORM_VERSIONS="0.8.8 0.9.11 0.10.8 0.11.14 ${DEFAULT_TERRAFORM_VERSION}" && \

testing/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
FROM circleci/golang:1.14
66

77
# Install Terraform
8-
ENV TERRAFORM_VERSION=0.12.25
8+
ENV TERRAFORM_VERSION=0.12.26
99
RUN 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} && \

0 commit comments

Comments
 (0)