-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Terraform is removed from the latest 24.04 runner image, ensure it's installed explicitly.
- Loading branch information
1 parent
8712624
commit b5caae8
Showing
1 changed file
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,10 @@ inputs: | |
description: "Files to ignore" | ||
required: false | ||
default: "" | ||
terraform-version: | ||
description: "Version of Terraform to use for formatting" | ||
required: false | ||
default: "latest" | ||
runs: | ||
using: "composite" | ||
steps: | ||
|
@@ -108,6 +112,12 @@ runs: | |
fi | ||
shell: bash | ||
|
||
- name: Setup Terraform | ||
uses: hashicorp/[email protected] # v3.1.2 | ||
with: | ||
terraform_version: "${{ inputs.terraform-version }}" | ||
terraform_wrapper: false | ||
|
||
- name: Get PR changed files via Git and code format files | ||
run: | | ||
if [[ ${{ steps.branch-exists.outputs.result }} == 0 ]]; | ||
|