From 6ff0b2d6864f6ed0cb42e26242adcb61e1c57f86 Mon Sep 17 00:00:00 2001 From: "jd1048576-renovate[bot]" <192009716+jd1048576-renovate[bot]@users.noreply.github.com> Date: Fri, 15 May 2026 04:36:38 +0000 Subject: [PATCH] chore(deps): update dependency https://github.com/opentofu/opentofu to v1.12.0 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2eccd80..8ecf2b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -67,7 +67,7 @@ RUN set -eux; \ helm version --short; # renovate: datasource=git-tags depName=https://github.com/opentofu/opentofu extractVersion=^v(?.+)$ -ARG TOFU_VERSION="1.11.7" +ARG TOFU_VERSION="1.12.0" RUN --mount=type=tmpfs,target=/root/.terraform.d set -eux; \ case "${TARGETPLATFORM}" in linux/amd64) ARCH="amd64";; linux/arm64) ARCH="arm64";; *) printf "Unsupported target platform [%s]\n"; exit 1;; esac; \ curl -fsSLo bundle.tar.gz "https://github.com/opentofu/opentofu/releases/download/v${TOFU_VERSION}/tofu_${TOFU_VERSION}_linux_${ARCH}.tar.gz"; \