Skip to content

Commit

Permalink
Fix if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
omaen committed Feb 19, 2024
1 parent 45bb67c commit 3260952
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ runs:
#

- name: Set high and critical severity outputs
if: ${{ inputs.disable_severity_check != "true" }}
if: inputs.disable_severity_check != 'true'
id: severity_check_outputs
shell: bash
env:
Expand All @@ -130,7 +130,7 @@ runs:
echo "is_critical_vuln_present=$is_critical_vuln_present" >> $GITHUB_OUTPUT
- name: Succeed or fail based on severity
if: ${{ inputs.disable_severity_check != "true" }}
if: inputs.disable_severity_check != 'true'
id: severity_check
shell: bash
env:
Expand Down

0 comments on commit 3260952

Please sign in to comment.