Skip to content

Commit

Permalink
fix: rename update_lint param to update_cfn_lint
Browse files Browse the repository at this point in the history
Rename the `update_lint` input parameter to `update_cfn_lint`, making
explicit that we're updating the CloudFormation Linter, as opposed to
some other linter.

Associated issue: #82
  • Loading branch information
ShahradR authored Feb 17, 2021
1 parent 9a5e4e1 commit 37e74d2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
with:
commands: test run --project-root ./e2e/resources/default
update_taskcat: true
update_lint: true
update_cfn_lint: true

vale:
name: Run Vale
Expand Down
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ inputs:
If set to "true", this action will update taskcat its the latest version
before running tests.
required: false
update_lint:
update_cfn_lint:
description: |
If set to "true", this action will update cfn-lit to its latest version
before running tests.
Expand Down
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if [ "${INPUT_UPDATE_TASKCAT}" == "true" ]; then
pip install --upgrade taskcat
fi

if [ "${INPUT_UPDATE_LINT}" == "true" ]; then
if [ "${INPUT_UPDATE_CFN_LINT}" == "true" ]; then
pip install --upgrade cfn-lint
fi

Expand Down

0 comments on commit 37e74d2

Please sign in to comment.