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
4 changes: 1 addition & 3 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ permissions: {}

jobs:
audit:
# Pinned to feat/python-audit-workflow until netresearch/.github#19 merges.
# Switch to @main after merge.
uses: netresearch/.github/.github/workflows/python-audit.yml@feat/python-audit-workflow
uses: netresearch/.github/.github/workflows/python-audit.yml@main
Copy link

Copilot AI Apr 17, 2026

Choose a reason for hiding this comment

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

uses: ...@main references a mutable branch for a reusable workflow. For supply-chain safety and reproducibility, prefer pinning to an immutable ref (a release tag or a full commit SHA in netresearch/.github) and optionally keep it updated via Dependabot/renovate.

Suggested change
uses: netresearch/.github/.github/workflows/python-audit.yml@main
uses: netresearch/.github/.github/workflows/python-audit.yml@<FULL_40_CHAR_COMMIT_SHA>

Copilot uses AI. Check for mistakes.
permissions:
contents: read
with:
Expand Down
Loading