Skip to content

Commit 58e78f3

Browse files
chore(deps): update dependency hashicorp/terraform to v1.5.6 in .circleci/config.yml (#3700)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent bcd917f commit 58e78f3

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
@@ -9,7 +9,7 @@ jobs:
99
# that flag starts the download asynchronously so we'd have a race
1010
# condition.
1111
# renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp
12-
TERRAFORM_VERSION: 1.5.5
12+
TERRAFORM_VERSION: 1.5.6
1313
steps:
1414
- checkout
1515
- run: make build-service

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ RUN case ${TARGETPLATFORM} in \
121121

122122
# install terraform binaries
123123
# renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp
124-
ENV DEFAULT_TERRAFORM_VERSION=1.5.5
124+
ENV DEFAULT_TERRAFORM_VERSION=1.5.6
125125

126126
# In the official Atlantis image, we only have the latest of each Terraform version.
127127
# Each binary is about 80 MB so we limit it to the 4 latest minor releases or fewer

testdrive/utils.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import (
3535
)
3636

3737
const hashicorpReleasesURL = "https://releases.hashicorp.com"
38-
const terraformVersion = "1.5.5" // renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp
38+
const terraformVersion = "1.5.6" // renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp
3939
const ngrokDownloadURL = "https://bin.equinox.io/c/4VmDzA7iaHb"
4040
const ngrokAPIURL = "localhost:41414" // We hope this isn't used.
4141
const atlantisPort = 4141

testing/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN apt-get update && apt-get --no-install-recommends -y install unzip \
66

77
# Install Terraform
88
# renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp
9-
ENV TERRAFORM_VERSION=1.5.5
9+
ENV TERRAFORM_VERSION=1.5.6
1010
RUN case $(uname -m) in x86_64|amd64) ARCH="amd64" ;; aarch64|arm64|armv7l) ARCH="arm64" ;; esac && \
1111
wget -nv -O terraform.zip https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_${ARCH}.zip && \
1212
mkdir -p /usr/local/bin/tf/versions/${TERRAFORM_VERSION} && \

0 commit comments

Comments
 (0)