Skip to content

Commit

Permalink
Exclude not exploitable state from scanner SARIF results (#694)
Browse files Browse the repository at this point in the history
## Objective

Implementation of bitwarden/template#80.

## Before you submit

- Please add **unit tests** where it makes sense to do so
  • Loading branch information
withinfocus authored Apr 4, 2024
1 parent a408745 commit d318bbe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ jobs:
base_uri: https://ast.checkmarx.net/
cx_client_id: ${{ secrets.CHECKMARX_CLIENT_ID }}
cx_client_secret: ${{ secrets.CHECKMARX_SECRET }}
additional_params: --report-format sarif --output-path . ${{ env.INCREMENTAL }}
additional_params: |
--report-format sarif \
--filter "state=TO_VERIFY;PROPOSED_NOT_EXPLOITABLE;CONFIRMED;URGENT" \
--output-path . ${{ env.INCREMENTAL }}
- name: Upload Checkmarx results to GitHub
uses: github/codeql-action/upload-sarif@1b1aada464948af03b950897e5eb522f92603cc2 # v3.24.9
Expand Down

0 comments on commit d318bbe

Please sign in to comment.