Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions docs/workflows.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,14 @@ jobs:
- name: Initialize and Analyze IaC
id: codeql_iac
uses: advanced-security/[email protected]

- name: Upload SARIF file
# Uncomment if you want to show the tool name as CodeQL instead of CodeQL-IaC (NOTE: this may conflict with Default Setup)
#with:
# rewrite-sarif-tool-name: false

- name: "Upload SARIF file"
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: ${{ steps.codeql_iac.outputs.sarif }}
sarif_file: ${{ steps.codeql_iac.outputs.sarif-results }}
```

## CodeQL CLI
Expand Down
Loading