From 33d09d0c3fbd953a039cea0bd5bb4ac741cb7fa0 Mon Sep 17 00:00:00 2001 From: Mario Castro Squella Date: Thu, 30 Jan 2025 12:23:24 -0300 Subject: [PATCH] Have Terraform installed in Azure integration test workflow (#1563) --- .github/workflows/re_test-integration-azure.yml | 5 +++++ .github/workflows/re_test-integration-prepare.yml | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/re_test-integration-azure.yml b/.github/workflows/re_test-integration-azure.yml index 9d8b0f4c9..f3dd6a986 100644 --- a/.github/workflows/re_test-integration-azure.yml +++ b/.github/workflows/re_test-integration-azure.yml @@ -36,6 +36,11 @@ jobs: name: Azure Deploy runs-on: ubuntu-latest steps: + - name: Install Terraform + uses: hashicorp/setup-terraform@v2 + with: + terraform_version: latest + - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/re_test-integration-prepare.yml b/.github/workflows/re_test-integration-prepare.yml index d0ff8a199..0b2fa8a3b 100644 --- a/.github/workflows/re_test-integration-prepare.yml +++ b/.github/workflows/re_test-integration-prepare.yml @@ -69,8 +69,3 @@ jobs: path: packages/framework-integration-tests/.booster retention-days: 1 include-hidden-files: true - - - name: Install Terraform - uses: hashicorp/setup-terraform@v2 - with: - terraform_version: latest