Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 637 Bytes

File metadata and controls

20 lines (16 loc) · 637 Bytes

GitLab CI

This documentation has moved to docs.cli.vulnetix.com/docs/ci-cd/gitlab-ci.

Quick Start

vulnetix:
  stage: test
  image: golang:latest
  script:
    - go install github.com/vulnetix/cli@latest
    - vulnetix auth login --method apikey --org-id "$VULNETIX_ORG_ID" --secret "$VULNETIX_API_KEY" --store project
    - vulnetix
  variables:
    VULNETIX_ORG_ID: $VULNETIX_ORG_ID
    VULNETIX_API_KEY: $VULNETIX_API_KEY

See the full documentation for pipeline templates and advanced configuration.