Increase unit coverage + fix uninstall session cleanup, .sh hover popup, and SCA triage handling(AST-137809) #865
This file contains hidden or 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: Checkmarx One Scan | |
| on: [ pull_request, workflow_dispatch ] | |
| jobs: | |
| cx-scan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| - name: Setup Java | |
| uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0 | |
| with: | |
| distribution: zulu | |
| java-version: 11 | |
| - name: Checkmarx One CLI Action | |
| uses: checkmarx/ast-github-action@327efb5d1dd16ac6c7c21a9ff8ec1e8ec393b5e6 # main | |
| with: | |
| base_uri: ${{ secrets.AST_RND_SCANS_BASE_URI }} | |
| cx_tenant: ${{ secrets.AST_RND_SCANS_TENANT }} | |
| cx_client_id: ${{ secrets.AST_RND_SCANS_CLIENT_ID }} | |
| cx_client_secret: ${{ secrets.AST_RND_SCANS_CLIENT_SECRET }} | |
| additional_params: --tags phoenix --file-include *.gradle,gradlew --threshold "sca-critical=1;sca-high=1;sca-medium=1;sca-low=1;sast-critical=1;sast-high=1;sast-medium=1;sast-low=1;iac-security-critical=1;iac-security-high=1;iac-security-medium=1;iac-security-low=1" |