Skip to content

feat: Download default terraform version when minor version mismatches #1775

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Jun 22, 2022
Prev Previous commit
Next Next commit
Update terraform version to default for ci
  • Loading branch information
AbhineetJain committed Jun 22, 2022
commit 3f51748d06092e4338e5a284eb168e98fa806a55
6 changes: 3 additions & 3 deletions .github/workflows/coder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ jobs:

- uses: hashicorp/setup-terraform@v2
with:
terraform_version: 1.1.2
terraform_version: 1.1.9
terraform_wrapper: false

- name: Test with Mock Database
Expand Down Expand Up @@ -264,7 +264,7 @@ jobs:

- uses: hashicorp/setup-terraform@v2
with:
terraform_version: 1.1.2
terraform_version: 1.1.9
terraform_wrapper: false

- name: Start PostgreSQL Database
Expand Down Expand Up @@ -494,7 +494,7 @@ jobs:

- uses: hashicorp/setup-terraform@v2
with:
terraform_version: 1.1.2
terraform_version: 1.1.9
terraform_wrapper: false

- uses: actions/setup-node@v3
Expand Down
1 change: 0 additions & 1 deletion cli/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ func TestServer(t *testing.T) {
}()
require.Eventually(t, func() bool {
_, err := cfg.URL().Read()
t.Log(err)
return err == nil
}, time.Minute, 25*time.Millisecond)
cancelFunc()
Expand Down