Skip to content

Commit 4e48aae

Browse files
committed
Add support for rc version of terraform
1 parent 6855bab commit 4e48aae

File tree

7 files changed

+22
-2
lines changed

7 files changed

+22
-2
lines changed

.github/workflows/acceptance-tests.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ jobs:
5353
uses: actions/checkout@v5
5454
- name: Install Terraform
5555
uses: hashicorp/setup-terraform@v3
56+
with:
57+
terraform_version: 'terraform_1.14.0-rc1'
5658
- name: Install Go
5759
uses: actions/setup-go@v6
5860
with:
@@ -154,6 +156,8 @@ jobs:
154156
go-version: stable
155157
- name: Install Terraform
156158
uses: hashicorp/setup-terraform@v3
159+
with:
160+
terraform_version: 'terraform_1.14.0-rc1'
157161
- name: Run scwconfig tests
158162
run: go tool gotestsum --format github-actions -- ./internal/services/scwconfig -timeout=2m
159163
env:

.github/workflows/coverage.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ jobs:
2727

2828
- name: Install Terraform
2929
uses: hashicorp/setup-terraform@v3
30+
with:
31+
terraform_version: 'terraform_1.14.0-rc1'
3032

3133
- name: Build binaries
3234
run: make build

.github/workflows/documentation.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,10 @@ jobs:
5959
- uses: actions/setup-go@v6
6060
with:
6161
go-version: stable
62-
- uses: hashicorp/setup-terraform@v3
62+
- name: Install Terraform
63+
uses: hashicorp/setup-terraform@v3
64+
with:
65+
terraform_version: 'terraform_1.14.0-rc1'
6366
- run: go tool tfplugindocs validate
6467
- run: rm -fr ./docs
6568
- run: go tool tfplugindocs generate

.github/workflows/nightly.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ jobs:
5555
uses: actions/checkout@v5
5656
- name: Install Terraform
5757
uses: hashicorp/setup-terraform@v3
58+
with:
59+
terraform_version: 'terraform_1.14.0-rc1'
5860
- name: Install Go
5961
uses: actions/setup-go@v6
6062
with:
@@ -115,6 +117,8 @@ jobs:
115117
go-version: stable
116118
- name: Install Terraform
117119
uses: hashicorp/setup-terraform@v3
120+
with:
121+
terraform_version: 'terraform_1.14.0-rc1'
118122
- name: Run sweepers
119123
run: make sweep
120124
env:

.github/workflows/purge.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
go-version: stable
2020
- name: Install Terraform
2121
uses: hashicorp/setup-terraform@v3
22+
with:
23+
terraform_version: 'terraform_1.14.0-rc1'
2224
- name: Run sweepers
2325
run: make sweep
2426
env:

.github/workflows/tfproviderlint.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ jobs:
3131
- uses: actions/setup-go@v6
3232
with:
3333
go-version: stable
34-
- uses: hashicorp/setup-terraform@v3
34+
- name: Install Terraform
35+
uses: hashicorp/setup-terraform@v3
36+
with:
37+
terraform_version: 'terraform_1.14.0-rc1'
3538
- run: go install github.com/bflad/tfproviderdocs@latest
3639
- run: make tfproviderdocs

.github/workflows/unit-tests.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222
go-version: stable
2323
- name: Install Terraform
2424
uses: hashicorp/setup-terraform@v3
25+
with:
26+
terraform_version: 'terraform_1.14.0-rc1'
2527
- name: Build binaries
2628
run: make build
2729
- name: Verify go.mod is tidy

0 commit comments

Comments
 (0)