2021-11-19 16:42:04 +01:00
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will initiate a Veracode Static Analysis Pipeline scan, return a results.json and convert to SARIF for upload as a code scanning alert
name : Veracode Static Analysis Pipeline Scan
on :
push :
branches : [ $default-branch, $protected-branches ]
pull_request :
# The branches below must be a subset of the branches above
branches : [ $default-branch ]
schedule :
- cron : $cron-weekly
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
2022-02-14 12:43:26 +05:30
permissions :
contents : read
2021-11-19 16:42:04 +01:00
jobs :
# This workflow contains a job to build and submit pipeline scan, you will need to customize the build process accordingly and make sure the artifact you build is used as the file input to the pipeline scan file parameter
build-and-pipeline-scan :
# The type of runner that the job will run on
2022-02-14 12:43:26 +05:30
permissions :
contents : read # for actions/checkout to fetch code
security-events : write # for github/codeql-action/upload-sarif to upload SARIF results
2022-11-04 20:45:41 +01:00
actions : read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
2021-11-19 16:42:04 +01:00
runs-on : ubuntu-latest
steps :
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it and copies all sources into ZIP file for submitting for analysis. Replace this section with your applications build steps
2024-01-03 02:09:21 -05:00
- uses : actions/checkout@v4
2021-11-19 16:42:04 +01:00
with :
repository : ''
2021-12-07 11:35:26 +01:00
- run : zip -r veracode-scan-target.zip ./
2021-11-19 16:42:04 +01:00
# download the Veracode Static Analysis Pipeline scan jar
2021-11-30 09:56:40 +01:00
- run : curl --silent --show-error --fail -O https://downloads.veracode.com/securityscan/pipeline-scan-LATEST.zip
2021-11-19 16:42:04 +01:00
- run : unzip -o pipeline-scan-LATEST.zip
2024-04-25 13:38:10 -04:00
- uses : actions/setup-java@v4
2021-11-19 16:42:04 +01:00
with :
2022-03-28 13:10:48 -04:00
java-version : 8
distribution : 'temurin'
2021-12-07 11:35:26 +01:00
- run : java -jar pipeline-scan.jar --veracode_api_id "${{secrets.VERACODE_API_ID}}" --veracode_api_key "${{secrets.VERACODE_API_KEY}}" --fail_on_severity="Very High, High" --file veracode-scan-target.zip
2021-11-19 16:42:04 +01:00
continue-on-error : true
- name : Convert pipeline scan output to SARIF format
id : convert
uses : veracode/veracode-pipeline-scan-results-to-sarif@ff08ae5b45d5384cb4679932f184c013d34da9be
with :
pipeline-results-json : results.json
2024-04-25 13:24:02 -04:00
- uses : github/codeql-action/upload-sarif@v3
2021-11-19 16:42:04 +01:00
with :
# Path to SARIF file relative to the root of the repository
sarif_file : veracode-results.sarif