Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 866 Bytes

File metadata and controls

34 lines (24 loc) · 866 Bytes

GHA Command Reference

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

Overview

The vulnetix gha subcommand provides seamless integration with GitHub Actions workflows for uploading artifacts to Vulnetix.

Upload all workflow artifacts

vulnetix gha upload --org-id "$VULNETIX_ORG_ID" --json

Check upload status

vulnetix gha status --txnid <transaction-id>
vulnetix gha status --uuid <artifact-uuid>

Workflow example

- name: Upload artifacts to Vulnetix
  uses: Vulnetix/cli@v1
  with:
    task: gha
    org-id: ${{ secrets.VULNETIX_ORG_ID }}
  env:
    GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

See the full documentation for detailed usage and examples.