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
2 changes: 1 addition & 1 deletion .github/workflows/label-pull-requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ jobs:
contents: read
pull-requests: write
steps:
- uses: actions/labeler@v5
- uses: actions/labeler@v6
Copy link

Copilot AI Mar 30, 2026

Choose a reason for hiding this comment

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

Using a floating major tag (actions/labeler@v6) means future v6.x updates can change behavior without review. Since this workflow runs on pull_request_target with write permissions, consider pinning the action to an immutable ref (full commit SHA, or at least a specific v6.x.y tag) to reduce supply-chain risk and improve auditability.

Suggested change
- uses: actions/labeler@v6
- uses: actions/labeler@v6.0.1

Copilot uses AI. Check for mistakes.
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
Loading