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
6 changes: 5 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ jobs:
install-dependencies-command: |
sudo apt-get update
sudo apt-get install -y libzmq3-dev

permissions:
# required for all workflows
security-events: write
# required to fetch internal or private CodeQL packs
packages: read
Comment on lines +32 to +36
Copy link

Copilot AI Jan 19, 2026

Choose a reason for hiding this comment

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

The permissions block is incorrectly nested under the with block. In GitHub Actions, when calling a reusable workflow, permissions should be a sibling key at the same level as uses, with, and if, not nested inside with. This incorrect placement will cause the workflow to fail or the permissions to be ignored. The permissions should be moved to the job level, aligned with the uses key.

Copilot uses AI. Check for mistakes.

docker_pipeline:
# Always evaluate, but only proceed if:
Expand Down