mirror of
https://github.com/coder/coder.git
synced 2026-06-02 20:48:20 +00:00
80538c079d
This fixes an RCE in git and gets us one minor version closer to fixing a critical Terraform vulnerability. In the next release we'll bump to 1.8.x.
12 lines
268 B
YAML
12 lines
268 B
YAML
name: "Setup Terraform"
|
|
description: |
|
|
Sets up Terraform for tests, builds, etc.
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Install Terraform
|
|
uses: hashicorp/setup-terraform@v3
|
|
with:
|
|
terraform_version: 1.7.5
|
|
terraform_wrapper: false
|