Skip to content

Commit

Permalink
trying to fix the escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
fballiano committed Jan 2, 2025
1 parent da60043 commit fa93e27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
ref: $${{ github.event.pull_request.head.sha }}
persist-credentials: false
- name: Download eComscan
Expand All @@ -275,7 +275,7 @@ jobs:
- name: Run eComscan
env:
ECOMSCAN_KEY: ${{ secrets.SANSEC_LICENSE_KEY }}
ECOMSCAN_KEY: $${{ secrets.SANSEC_LICENSE_KEY }}
run: |
output=$(./ecomscan --no-auto-update --skip-database --deep --format=csv .)
if [ -n "$output" ]; then
Expand Down

0 comments on commit fa93e27

Please sign in to comment.