Skip to content

Commit a1942a6

Browse files
chore(deps): update dependency hashicorp/terraform to v1.13.5 in testdrive/utils.go (main) (#5945)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 9a6b99a commit a1942a6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ARG DEBIAN_TAG=12.12-slim@sha256:936abff852736f951dab72d91a1b6337cf04217b2a77a5e
66
ARG GOLANG_TAG=1.25.3-alpine@sha256:aee43c3ccbf24fdffb7295693b6e33b21e01baec1b2a55acc351fde345e9ec34
77

88
# renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp
9-
ARG DEFAULT_TERRAFORM_VERSION=1.13.4
9+
ARG DEFAULT_TERRAFORM_VERSION=1.13.5
1010
# renovate: datasource=github-releases depName=opentofu/opentofu versioning=hashicorp
1111
ARG DEFAULT_OPENTOFU_VERSION=1.10.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
@@ -35,7 +35,7 @@ import (
3535
)
3636

3737
const hashicorpReleasesURL = "https://releases.hashicorp.com"
38-
const terraformVersion = "1.13.4" // renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp
38+
const terraformVersion = "1.13.5" // 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

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.13.4
9+
ENV TERRAFORM_VERSION=1.13.5
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)