mirror of
https://gitlab.durp.info/durfy/ci-includes/yml.git
synced 2026-05-07 07:50:30 -05:00
- /pipelines/terraform.yml - /templates/codescan.tpl.yml - /templates/docker.tpl.yml - /templates/gitlab.tpl.yml - /templates/golang.tpl.yml - /templates/helm.tpl.yml - /templates/nuget.tpl.yml - /templates/octopus.tpl.yml - /templates/sonarqube.tpl.yml - /templates/version.tpl.yml
21 lines
518 B
YAML
21 lines
518 B
YAML
.generate_sbom:
|
|
image: registry.durp.info/nixos/nix:latest
|
|
script:
|
|
- ./scripts/scanner/syft-install.sh
|
|
- ./scripts/scanner/syft-mkdir.sh
|
|
- ./scripts/scanner/syft-go.sh
|
|
- ./scripts/scanner/syft-docker.sh
|
|
artifacts:
|
|
expire_in: 1 hour
|
|
paths:
|
|
- $CI_PROJECT_DIR/syft
|
|
|
|
.generate_cve:
|
|
image: registry.durp.info/nixos/nix:latest
|
|
script:
|
|
- ./scripts/scanner/grype-install.sh
|
|
- ./scripts/scanner/grype.sh
|
|
artifacts:
|
|
expire_in: 1 hour
|
|
paths:
|
|
- $CI_PROJECT_DIR/syft
|