From 63170c0c1d3a4ea9e89840b80668b6977f3b96cf Mon Sep 17 00:00:00 2001 From: Simon Sprankel Date: Wed, 15 Jan 2025 08:06:20 +0100 Subject: [PATCH] Set up Terraform before using it Fixes https://github.com/mage-os/terraform/actions/runs/12783081980 Ubuntu 24.04 does not include Terraform anymore, see https://github.com/actions/runner-images/issues/10636 --- .github/workflows/terraform-apply.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/terraform-apply.yml b/.github/workflows/terraform-apply.yml index d4b89fb..487ba4e 100644 --- a/.github/workflows/terraform-apply.yml +++ b/.github/workflows/terraform-apply.yml @@ -34,6 +34,9 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Setup Terraform + uses: hashicorp/setup-terraform@v3 + - name: Terraform init id: init run: terraform init