Skip to content

Commit 5b5fab6

Browse files
authored
Merge branch 'main' into split_up_build_all_commands
2 parents ccae196 + cfe9df7 commit 5b5fab6

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
@@ -5,7 +5,7 @@ ARG DEBIAN_TAG=12.8-slim@sha256:d365f4920711a9074c4bcd178e8f457ee59250426441ab2a
55
ARG GOLANG_TAG=1.23.4-alpine@sha256:c23339199a08b0e12032856908589a6d41a0dab141b8b3b21f156fc571a3f1d3
66

77
# renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp
8-
ARG DEFAULT_TERRAFORM_VERSION=1.10.3
8+
ARG DEFAULT_TERRAFORM_VERSION=1.10.4
99
# renovate: datasource=github-releases depName=opentofu/opentofu versioning=hashicorp
1010
ARG DEFAULT_OPENTOFU_VERSION=1.8.8
1111
# 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.10.3" // renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp
38+
const terraformVersion = "1.10.4" // 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.10.3
9+
ENV TERRAFORM_VERSION=1.10.4
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)