feat: update line content to enforce a size limit and show the context around the secret #353
Workflow file for this run
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: Checkmarx One Scan | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: '30 9 * * *' | |
jobs: | |
cx-scan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Checkmarx One CLI Action | |
uses: checkmarx/ast-github-action@dd0f9365942f29a99c3be5bdb308958ede8f906b # v.2.0.25 | |
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 scs --threshold "sast-high=1; sast-medium=1; sast-low=1; sca-high=1; sca-medium=1; iac-security-high=1; iac-security-medium=1; iac-security-low=1" |