forked from checkmarx-ts/checkmarx-cxflow-github-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkmarx-sca-scan-push.yml
45 lines (42 loc) · 1.61 KB
/
checkmarx-sca-scan-push.yml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# This workflow is to automate Checkmarx SCA scans. It runs on a push to the main branch.
#
# The following GitHub Secrets must be first defined:
# - CHECKMARX_SCA_USERNAME
# - CHECKMARX_SCA_PASSWORD
#
# The following variables must be inserted below:
# - <ProjectName>
# - <SCATenant>
# - <GitHubRepoUrl>
#
# For full documentation, including a list of all inputs, please refer to the README https://github.com/checkmarx-ts/checkmarx-cxflow-github-action
name: Checkmarx SCA Scan
on:
push:
branches:
- main
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Checkmarx CxFlow Action
uses: checkmarx-ts/checkmarx-cxflow-github-action@v1.1 # GitHub Action version
with:
project: <ProjectName> # <-- Insert Checkmarx CxSCA Project Name
sca_api_url: https://api.scacheckmarx.com
sca_app_url: https://sca.scacheckmarx.com
sca_access_control_url: https://platform.checkmarx.net
sca_tenant: <SCATenant> # <-- Insert Checkmarx CxSCA Tenant
sca_username: ${{ secrets.CHECKMARX_SCA_USERNAME }} # To be stored in GitHub Secrets.
sca_password: ${{ secrets.CHECKMARX_SCA_PASSWORD }} # To be stored in GitHub Secrets.
break_build: false
scanners: sca
bug_tracker: Sarif
params: --namespace=${{ github.repository_owner }} --repo-name=${{ github.event.repository.name }} --branch=${{ github.ref }} --repo-url="<GitHubRepoUrl>"
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v1
with:
sarif_file: cx.sarif