Skip to content

Commit 46b430a

Browse files
Add setup terraform step to bridge CI (#2825)
The CI started failing because of missing terraform CLI. This is likely the result of a change in default github runner configurations. This PR adds an explicit setup terraform step to the bridge CI. fixes #2824
1 parent f7d51af commit 46b430a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/build-and-test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ jobs:
2727
uses: pulumi/actions@v5
2828
with:
2929
pulumi-version: dev
30+
- name: Install terraform
31+
uses: hashicorp/setup-terraform@v3
32+
with:
33+
terraform_wrapper: false
3034
- name: Check out source code
3135
uses: actions/checkout@master
3236
- name: Install Go

0 commit comments

Comments
 (0)