From ce57dce7d60dd094b449408e0b8f05f9e9245120 Mon Sep 17 00:00:00 2001 From: "jd1048576-renovate[bot]" <192009716+jd1048576-renovate[bot]@users.noreply.github.com> Date: Thu, 28 May 2026 04:52:32 +0000 Subject: [PATCH] chore(deps): update dependency https://github.com/opentofu/opentofu to v1.12.1 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1d116f2..f9cae68 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.12.0" +ARG TOFU_VERSION="1.12.1" 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"; \