PR to fix Horusec scanner #127
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Horusec Security Scan | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
Horusec_Scan: | |
name: horusec-Scan | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == true | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: # Required when commit authors is enabled | |
fetch-depth: 0 | |
- name: Running Security Scan | |
run: | | |
curl -fsSL https://raw.githubusercontent.com/ZupIT/horusec/main/deployments/scripts/install.sh | bash -s latest | |
horusec start -D -t="10000" -p="./" -e="true" -i="**/crypto/bls/herumi/**, **/**/*_test.go, **/third_party/afl/**, **/crypto/keystore/key.go" |