Skip to content

Commit

Permalink
add tf install steps for actions (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
movence authored Feb 5, 2025
1 parent 988e060 commit 822b18a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/eks-add-on-canary-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ jobs:
role-to-assume: ${{ env.TERRAFORM_AWS_ASSUME_ROLE }}
aws-region: us-west-2

- name: Install Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: "1.1.7"

- name: Terraform apply
uses: nick-fields/retry@v2
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/eks-add-on-integ-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,11 @@ jobs:
echo "[WARNING] Kubernetes dependencies are lower than the latest Kubernetes cluster version. Please check changelog to ensure no breaking changes: https://kubernetes.io/releases/"
fi
- name: Install Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: "1.1.7"

- name: Verify Terraform version
run: terraform --version

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/gpu-e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,11 @@ jobs:
echo "please run go get -u && go mod tidy"
exit 1;
fi
- name: Install Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: "1.1.7"

- name: Verify Terraform version
run: terraform --version
Expand Down

0 comments on commit 822b18a

Please sign in to comment.