Skip to main content

Configuring a GitHub Action with a Checkmarx One Workflow

You can add a Checkmarx One scan to an existing workflow or you can create a new workflow for the scan. There is an option to generate a report which imports the results into the GitHub Security alerts.

The following section describes how to create a new workflow with a Checkmarx One scan.

  1. Navigate to your GitHub repository Actions tab and click New Workflow and then click on set up a workflow yourself.

    Image_1180.png

    The code editor is shown.

    Image_1181.png
  2. By default, the workflow is named main.yml, you can edit the name to describe the workflow, e.g., CheckmarxScan.

  3. In the Edit new file section, customize the code to meet your needs regarding triggers, branches, etc.

  4. In the Marketplace tab of the right-side panel, search for Checkmarx AST Github Action, and click on that item.

    Image_1182.png

    The .yml installation snippet is shown.

  5. In the Marketplace section, copy the snippet, paste it into the “steps” section of the new project workflow below “runs-on”, and adjust the alignment as needed.

    Image_1183.png

    Notice

    If you are running SCA Resolver as part of the scan then you need to modify the script accordingly. A sample script using Resolver is available here.

  6. Customize the code as follows:

  7. If you want to import scan results into GitHub, do the following:

    1. In the additional_params line add --report-format sarif --output-path ..

    2. Add the following code to your .yml file:

          - 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
  8. Click Start Commit.

  9. In the dialog that opens, edit the name, add a description (optional), specify a branch, and then click Commit new file.

    The Checkmarx One Action is added to the repo and an initial scan is run on the source code. Subsequent scans will be triggered each time a push commit is done.

Checkmarx One GitHub Action Configuration Variables

When you set up a Checkmarx One GitHub Action in a GitHub workflow you need to configure the following variables.

Variable

Required

Description

Possible Values

base_uri

(tick)

The base URL of your Checkmarx One environment.

cx_tenant

(tick)

The name of your Checkmarx One Tenant Account.

e.g., MyOrganization

cx_client_id

(tick)

The Checkmarx One client ID.

Recommended to create a GitHub Secret.

e.g., ${{ secrets.CX_CLIENT_ID }}

cx_client_secret

(tick)

The Checkmarx One Client Secret.

Recommended to create a GitHub Secret.

e.g., ${{ secrets.CX_CLIENT_SECRET }}

project_name

(blue star)

The name that will be assigned to this Project in Checkmarx One.

e.g DemoProject

Default: If no project name is specified, then the name of the GitHub repo is assigned to the project in Checkmarx One.

branch

(blue star)

The branch name that will be designated for this Project in Checkmarx One.

e.g., main

Default: ${{ github.ref#refs/heads/}}

additional_params

(blue star)

You can specify any CLI arguments that you would like to apply to scans of this project. See documentation here.

e.g., --sast-incremental, --sast-preset-name "Checkmarx Default", --scan-types sast