Skip to content

Commit

Permalink
fix: hardcoded version, example location (#4)
Browse files Browse the repository at this point in the history
Replaced hardcoded version information with correct reference to input
value. Moved the example workflow out of the .github/workflows folder
into an 'examples' folder.
  • Loading branch information
bradegler authored and verbanicm committed Nov 4, 2022
1 parent 46beec5 commit 8617134
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/secure-setup-terraform/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ runs:
name: 'verify-binary-checksum'
shell: 'bash'
run: |-
CHECKSUM=$(jq -r '.versions[] | select(.version=="1.3.3" and .arch=="amd64" and .os=="linux") | .binary_checksum' < terraform-checksums.json)
CHECKSUM=$(jq -r --arg version ${{ inputs.terraform_version }} '.versions[] | select(.version==$version and .arch=="amd64" and .os=="linux") | .binary_checksum' < terraform-checksums.json)
echo "${CHECKSUM} $(which terraform)" > terraform.sha256
shasum --algorithm 256 --check terraform.sha256
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
inputs:
terraform_version:
type: string
description: Terraform version (e.g 1.3.2)
description: Terraform version (e.g 1.3.3)
required: false
default: '1.3.3'

Expand Down

0 comments on commit 8617134

Please sign in to comment.