Skip to content

Commit

Permalink
Add Sansec eComscan workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mage-os-ci committed Jan 2, 2025
1 parent 47a18f6 commit 973aa7f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/sansec-ecomscan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
env:
ECOMSCAN_KEY: ${{ secrets.SANSEC_LICENSE_KEY }}
run: |
output=$$(./ecomscan --no-auto-update --skip-database --deep --format=csv .)
if [ -n "$$output" ]; then
output=$(./ecomscan --no-auto-update --skip-database --deep --format=csv .)
if [ -n "$output" ]; then
echo "Security issues found:"
echo "$$output"
echo "$output"
exit 1
fi

0 comments on commit 973aa7f

Please sign in to comment.