About Pipeline Scan baseline files
The Pipeline Scan provides the option to set a baseline of known security findings using the Static Analysis results from a Pipeline Scan of an application. By default, each scan saves its results to a results.json
file. You can use this file as a baseline of findings for that application. Future Pipeline Scans then compare their results against this baseline to identify new findings.
In your Pipeline Scan configuration, set the --baseline_file
parameter to the name of your results.json
. You can safely rename results.json
to something else, such as baseline.json
.
To identify new findings, the Pipeline Scan compares the current scan results with those listed in the baseline file. It ignores the baseline findings during the scan and only uses them to flag new issues.
For a CI/CD workflow, you can decide whether any new findings outside your baseline are important enough to "break the build". Set the --fail_on_severity
parameter to fail the build based on the severity of the findings. Then, your team can determine a mitigation strategy for addressing these findings before moving the code to the next phase in your development pipeline.
You can only create a baseline file using the Pipeline Scan—not through the Veracode Platform. For examples of how to create a baseline file using the veracode static scan
command, see the CLI reference.