generated from DefenderForCodeOrg/CheckmarxDemo
-
Notifications
You must be signed in to change notification settings - Fork 0
25 lines (23 loc) · 951 Bytes
/
vered.yml
File metadata and controls
25 lines (23 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: Checkmarx One Scan
on: [push,pull_request,workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Checkmarx One CLI Action
uses: checkmarx/ast-github-action@main #Github Action version
with:
project_name: ghaction-demo
cx_tenant: cx_pm_ast_ori_james_brotsos_tenant
base_uri: https://ast.checkmarx.net
cx_client_id: ${{ secrets.CX_CLIENT_ID }}
cx_client_secret: ${{ secrets.CX_CLIENT_SECRET }}
additional_params: --report-format sarif --output-path . --debug
#additional_params: --report-format sarif --output-path . --debug --tags 'feedback-assignee:James Brotsos'
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v2
with:
# Path to SARIF file relative to the root of the repository
sarif_file: cx_result.sarif