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
1 change: 1 addition & 0 deletions .github/workflows/build-private.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ jobs:

- uses: actions/checkout@v4
with:
token: ${{ secrets.SUBMODULE_TOKEN }}
fetch-depth: 200
submodules: true
Copy link

Copilot AI Feb 13, 2026

Choose a reason for hiding this comment

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

Since this switches checkout to a long-lived secret token, consider setting persist-credentials: false in this actions/checkout step to avoid leaving the PAT in the repo’s git config for subsequent steps (reduces risk of accidental leakage/exfiltration).

Suggested change
submodules: true
submodules: true
persist-credentials: false

Copilot uses AI. Check for mistakes.
- name: install core packages
Expand Down
Loading