Skip to content

Commit 60a168d

Browse files
authored
deps: tf 1.1.6 (#2071)
Signed-off-by: Rui Chen <[email protected]>
1 parent 6948580 commit 60a168d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
# We do this instead of setting --default-tf-version because setting
1717
# that flag starts the download asynchronously so we'd have a race
1818
# condition.
19-
TERRAFORM_VERSION: 1.1.5
19+
TERRAFORM_VERSION: 1.1.6
2020
steps:
2121
- checkout
2222
- run: make build-service

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN CGO_ENABLED=0 go build -trimpath -ldflags "-s -w" -v -o atlantis .
1010
FROM ghcr.io/runatlantis/atlantis-base:2021.12.15 AS base
1111

1212
# install terraform binaries
13-
ENV DEFAULT_TERRAFORM_VERSION=1.1.5
13+
ENV DEFAULT_TERRAFORM_VERSION=1.1.6
1414

1515
# In the official Atlantis image we only have the latest of each Terraform version.
1616
RUN AVAILABLE_TERRAFORM_VERSIONS="0.8.8 0.9.11 0.10.8 0.11.15 0.12.31 0.13.7 0.14.11 0.15.5 1.0.11 ${DEFAULT_TERRAFORM_VERSION}" && \

testdrive/utils.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import (
3434
)
3535

3636
const hashicorpReleasesURL = "https://releases.hashicorp.com"
37-
const terraformVersion = "1.1.5"
37+
const terraformVersion = "1.1.6"
3838
const ngrokDownloadURL = "https://bin.equinox.io/c/4VmDzA7iaHb"
3939
const ngrokAPIURL = "localhost:41414" // We hope this isn't used.
4040
const atlantisPort = 4141

testing/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM golang:1.17
33
RUN apt-get update && apt-get install unzip
44

55
# Install Terraform
6-
ENV TERRAFORM_VERSION=1.1.5
6+
ENV TERRAFORM_VERSION=1.1.6
77
RUN case $(uname -m) in x86_64|amd64) ARCH="amd64" ;; aarch64|arm64|armv7l) ARCH="arm64" ;; esac && \
88
wget -nv -O terraform.zip https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_${ARCH}.zip && \
99
mkdir -p /usr/local/bin/tf/versions/${TERRAFORM_VERSION} && \

0 commit comments

Comments
 (0)