> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cryptarium.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Uploading SARIF

> Publish cryptarium results to the GitHub Security tab.

# Uploading SARIF

## With the Action

```yaml theme={null}
- uses: sgoveia/cryptarium@v0.1.1
  with:
    path: .
    fail-on: critical
    upload-sarif: true
```

Ensure the workflow has permission to upload security events (`security-events: write` on the job or workflow as required by GitHub).

## Manual

```bash theme={null}
cryptarium scan . --format sarif --output results.sarif
```

Upload `results.sarif` with `github/codeql-action/upload-sarif` or your platform's SARIF ingest.

## Related

* [SARIF output](/outputs/sarif)
* [GitHub Action](/cli/github-action)
