Skip to content

Commit 81be752

Browse files
committed
Changes related to compliance scan
1 parent 017b010 commit 81be752

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/mend.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,12 +138,12 @@ jobs:
138138
retention-days: 7
139139

140140
- name: Final scan result
141-
if: ${{ steps.scan.outcome }} == 'failure'
141+
if: ${{ steps.scan.outcome == 'failure' }}
142142
run: |
143143
printf "\nSCA scan detected vulnerabilities.\n"
144144
exit 1
145145
146146
- name: Final scan result
147-
if: ${{ steps.scan.outcome }} == 'success'
147+
if: ${{ steps.scan.outcome == 'success' }}
148148
run: |
149149
exit 0

0 commit comments

Comments
 (0)