Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
args: --file=QRCoder.Core.sln --severity-threshold=high --sarif-file-output=snyk.sarif --json-output=snyk.json

- name: 📊 Upload Snyk Results
uses: github/codeql-action/upload-sarif@99df26d4f13ea111d4ec1a7dddef6063f76b97e9
uses: github/codeql-action/upload-sarif@f205ea1c3313d32999d8d6a48b4f6530d4437b38

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 Info: CodeQL action pinning is inconsistent across workflows

This workflow pins github/codeql-action/upload-sarif to a full commit SHA, while .github/workflows/security-scan.yml:32,38,41 uses the mutable @v4 tag for init, autobuild, and analyze. Dependabot therefore only tracks the SHA-pinned usage here, and the two workflows can end up running different CodeQL Action versions. Consider standardizing on SHA pins (or tags) across all workflows.

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

if: always() && hashFiles('snyk.sarif') != ''
with:
sarif_file: snyk.sarif
Expand Down
Loading