From af865ab0dce8d5d490ab90a8687c9e43dcda6c8c Mon Sep 17 00:00:00 2001 From: Jan Hentschel Date: Mon, 31 Jul 2023 22:57:46 +0200 Subject: [PATCH] build(deps): bump terraform from 1.5.3 to 1.5.4 (#7657) https://github.com/hashicorp/terraform/releases/tag/v1.5.4 https://releases.hashicorp.com/terraform/1.5.4/ --- terraform/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/terraform/Dockerfile b/terraform/Dockerfile index 2761790df2af..a8362ccfa5ed 100644 --- a/terraform/Dockerfile +++ b/terraform/Dockerfile @@ -2,13 +2,13 @@ FROM ghcr.io/dependabot/dependabot-updater-core ARG TARGETARCH # See https://github.com/hashicorp/terraform/releases or https://releases.hashicorp.com/terraform/ -ARG TERRAFORM_VERSION=1.5.3 +ARG TERRAFORM_VERSION=1.5.4 # curl "https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_SHA256SUMS" | grep "terraform_${TERRAFORM_VERSION}_linux_amd64.zip" -ARG TERRAFORM_AMD64_CHECKSUM=5ce4e0fc73d42b79f26ebb8c8d192bdbcff75bdc44e3d66895a48945b6ff5d48 +ARG TERRAFORM_AMD64_CHECKSUM=16d9c05137ecf7f427a8cfa14ca9e7c0e73cb339f2c88ee368824ac7b4d077ea # curl "https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_SHA256SUMS" | grep "terraform_${TERRAFORM_VERSION}_linux_arm64.zip" -ARG TERRAFORM_ARM64_CHECKSUM=776c78281c1b517d1e2d9e78b2e60900b8ef9ecd51c4a5d2ffa68f66fea35dd2 +ARG TERRAFORM_ARM64_CHECKSUM=c087c129891816109296738d2bf83d46fdca110825a308d5192f330e80dad71a RUN cd /tmp \ && curl -o terraform-${TARGETARCH}.tar.gz https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_${TARGETARCH}.zip \