mirror of
https://github.com/coder/coder.git
synced 2026-06-04 13:38:21 +00:00
7e9a9e098c
Updates Terraform from 1.11.4 to 1.12.2 across all relevant files. Changes include: - GitHub Actions setup-tf configuration - Dockerfile configurations (dogfood and base) - Install script - Provisioner install.go with version constants - Test data files (tfstate.json, tfplan.json, version.txt) Follows the same pattern as PR #17323 which updated to 1.11.4. Co-authored-by: blink-so[bot] <211532188+blink-so[bot]@users.noreply.github.com> Co-authored-by: sreya <4856196+sreya@users.noreply.github.com>
12 lines
316 B
YAML
12 lines
316 B
YAML
name: "Setup Terraform"
|
|
description: |
|
|
Sets up Terraform for tests, builds, etc.
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Install Terraform
|
|
uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3.1.2
|
|
with:
|
|
terraform_version: 1.12.2
|
|
terraform_wrapper: false
|