How to add a Snyk pipe
Follow these steps to add a Snyk pipe:
Use the Bitbucket pipeline editor to update the
.yml
file configuration, select the correct language, and use the Bitbucket Pipes build directory when adding the Snyk pipe.Paste the Snyk pipe into the Bitbucket editor interface after all build steps. Build steps are commands such as these:
npm install / composer install / bundle install / dotnet restore / docker build
Ensure you paste the pipe before a deployment step, such as
npm publish
ordocker push
.Configure the mandatory variables SNYK_TOKEN and LANGUAGE.
(Optional) Choose whether to fail the pipeline on vulnerabilities found with DONT_BREAK_BUILD and SEVERITY_THRESHOLD if it is used, and consider enabling MONITOR . For more information, see Snyk pipe parameters and values.
After Snyk is included in your pipeline commands, it looks for the manifest files in that repository, for example,
package.json
,package-lock.json
, and performs the scan.
Results appear in the Bitbucket Pipelines output interface, similar to the following:

Last updated
Was this helpful?