Skip to content

Commit

Permalink
fix security scan moar
Browse files Browse the repository at this point in the history
  • Loading branch information
zalimeni committed Sep 18, 2024
1 parent 91a208e commit e2efab1
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ jobs:
- run: |
echo $PWD
pwd
ls -al
ls -al "$PWD/consul"
if [ "$PWD/consul" ]; then echo "found"; else echo "not found"; fi
- name: Set up Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
Expand All @@ -70,11 +71,17 @@ jobs:
path: security-scanner
ref: main

- run: |
echo $PWD
pwd
ls -al "$PWD/consul"
if [ "$PWD/consul" ]; then echo "found"; else echo "not found"; fi
- name: Scan
id: scan
uses: ./security-scanner
with:
repository: "$PWD/consul"
repository: "$PWD/../consul"
# See scan.hcl at repository root for config.

- name: SARIF Output
Expand Down

0 comments on commit e2efab1

Please sign in to comment.