Generate GitLab Dependency Scanning report using cargo-audit
.
Add the following to your .gitlab-ci.yml
:
audit:
stage: test
script:
- gitlab-cargo-audit --output-path gl-dependency-scanning-report.json
artifacts:
when: always
reports:
dependency_scanning: gl-dependency-scanning-report.json
Dual licensed under the MIT and Apache 2.0 licenses.