From 13929c29cd1d82953b2e23ac4b4de0391a3e89cf Mon Sep 17 00:00:00 2001 From: "jd1048576-renovate[bot]" <192009716+jd1048576-renovate[bot]@users.noreply.github.com> Date: Fri, 25 Apr 2025 02:18:03 +0000 Subject: [PATCH] chore(deps): update dependency https://github.com/opentofu/opentofu to v1.9.1 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 871d022..59ca692 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.9.0" +ARG TOFU_VERSION="1.9.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"; \