diff --git a/terraform/Dockerfile b/terraform/Dockerfile index 650423a3e92..6f503a3c279 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.4.5 +ARG TERRAFORM_VERSION=1.4.6 # curl "https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_SHA256SUMS" | grep "terraform_${TERRAFORM_VERSION}_linux_amd64.zip" -ARG TERRAFORM_AMD64_CHECKSUM=ce10e941cd11554b15a189cd00191c05abc20dff865599d361bdb863c5f406a9 +ARG TERRAFORM_AMD64_CHECKSUM=e079db1a8945e39b1f8ba4e513946b3ab9f32bd5a2bdf19b9b186d22c5a3d53b # curl "https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_SHA256SUMS" | grep "terraform_${TERRAFORM_VERSION}_linux_arm64.zip" -ARG TERRAFORM_ARM64_CHECKSUM=ca2c48f518f72fef668255150cc5e63b92545edc62a05939bbff8a350bceb357 +ARG TERRAFORM_ARM64_CHECKSUM=b38f5db944ac4942f11ceea465a91e365b0636febd9998c110fbbe95d61c3b26 RUN cd /tmp \ && curl -o terraform-${TARGETARCH}.tar.gz https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_${TARGETARCH}.zip \