Skip to content

Commit

Permalink
fix equality operator
Browse files Browse the repository at this point in the history
  • Loading branch information
anderssonw committed Mar 21, 2023
1 parent dc96ab2 commit 0112681
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ runs:
uses: actions/checkout@v3

- name: Check If Both Scans Disabled
if: (inputs.trivy == 'false' || inputs.image_url = '') && inputs.tfsec == 'false'
if: (inputs.trivy == 'false' || inputs.image_url == '') && inputs.tfsec == 'false'
shell: bash
run: |
echo "Both Trivy and TFSec are disabled. Exiting safely."
Expand Down

0 comments on commit 0112681

Please sign in to comment.