Skip to content

Commit 5d8c03c

Browse files
chore(deps): update dependency hashicorp/terraform to v1.14.9 in testdrive/utils.go (main) (#6446)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 6edea09 commit 5d8c03c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ARG DEBIAN_TAG=12.13-slim@sha256:f9c6a2fd2ddbc23e336b6257a5245e31f996953ef06cd13
66
ARG GOLANG_TAG=1.25.8-alpine@sha256:8e02eb337d9e0ea459e041f1ee5eece41cbb61f1d83e7d883a3e2fb4862063fa
77

88
# renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp
9-
ARG DEFAULT_TERRAFORM_VERSION=1.14.8
9+
ARG DEFAULT_TERRAFORM_VERSION=1.14.9
1010
# renovate: datasource=github-releases depName=opentofu/opentofu versioning=hashicorp
1111
ARG DEFAULT_OPENTOFU_VERSION=1.11.6
1212
# renovate: datasource=github-releases depName=open-policy-agent/conftest

testdrive/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
)
2626

2727
const hashicorpReleasesURL = "https://releases.hashicorp.com"
28-
const terraformVersion = "1.14.8" // renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp
28+
const terraformVersion = "1.14.9" // renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp
2929
const ngrokDownloadURL = "https://bin.equinox.io/c/4VmDzA7iaHb"
3030
const ngrokAPIURL = "localhost:41414" // We hope this isn't used.
3131
const atlantisPort = 4141

testing/Dockerfile

Lines changed: 1 addition & 1 deletion
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.14.8
9+
ENV TERRAFORM_VERSION=1.14.9
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)