From d4a64bf147a2566a045106430278f9253312d179 Mon Sep 17 00:00:00 2001 From: nico_dreylaq Date: Thu, 5 Dec 2024 11:24:15 +0100 Subject: [PATCH] fix: implem terraform setup for some tests Adaptors & force Terraform version 1.10.1 setup for DockerWindows --- .github/workflows/build.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index afd898fa4..bea4dad58 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -54,6 +54,11 @@ jobs: - name: Install AWSCLI (the one in the Github runner does not work) run: | pip install awscli + + - name: Setup Terraform + uses: hashicorp/setup-terraform@v3 + with: + terraform_version: latest - name: Setup just run: | @@ -121,7 +126,12 @@ jobs: - name: Install AWSCLI (the one in the Github runner does not work) run: | pip install awscli - + + - name: Setup Terraform + uses: hashicorp/setup-terraform@v3 + with: + terraform_version: latest + - name: Setup just run: | sudo snap install --edge --classic just @@ -606,10 +616,10 @@ jobs: - name: Setup Terraform and other tools run: | - choco install terraform -y + choco install terraform --version=1.10.1 -y choco install mongodb-shell -y choco install 7zip -y - choco install just -y + choco install just -y - name: Setup AWS cli uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4