Skip to content

Commit

Permalink
CI passes on blocking findings and internal errors (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
waybackarchiver authored Feb 6, 2023
1 parent 35a726b commit 06fdee9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/reusable-semgrep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,37 +55,37 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}

- name: Run Bug Scan
run: semgrep ci --sarif --output=../semgrep/r2c-bug-scan.sarif
run: semgrep ci --sarif --output=../semgrep/r2c-bug-scan.sarif || true
env:
SEMGREP_RULES: 'p/r2c-bug-scan'

- name: Run CI
run: semgrep ci --sarif --output=../semgrep/r2c-ci.sarif
run: semgrep ci --sarif --output=../semgrep/r2c-ci.sarif || true
env:
SEMGREP_RULES: 'p/r2c-ci'

- name: Run Best Practices
run: semgrep ci --sarif --output=../semgrep/r2c-best-practices.sarif
run: semgrep ci --sarif --output=../semgrep/r2c-best-practices.sarif || true
env:
SEMGREP_RULES: 'p/r2c-best-practices'

- name: Run Security Audit
run: semgrep ci --sarif --output=../semgrep/r2c-security-audit.sarif
run: semgrep ci --sarif --output=../semgrep/r2c-security-audit.sarif || true
env:
SEMGREP_RULES: 'p/r2c-security-audit'

- name: Run GoSec
run: semgrep ci --sarif --output=../semgrep/gosec.sarif
run: semgrep ci --sarif --output=../semgrep/gosec.sarif || true
env:
SEMGREP_RULES: 'p/gosec'

- name: Run Secrets Detecting
run: semgrep ci --sarif --output=../semgrep/secrets.sarif
run: semgrep ci --sarif --output=../semgrep/secrets.sarif || true
env:
SEMGREP_RULES: 'p/secrets'

- name: Run insecure-transport Detecting
run: semgrep ci --sarif --output=../semgrep/insecure-transport.sarif
run: semgrep ci --sarif --output=../semgrep/insecure-transport.sarif || true
env:
SEMGREP_RULES: 'p/insecure-transport'

Expand Down

0 comments on commit 06fdee9

Please sign in to comment.