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/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.DEPLOY_KEY }}
ssh-key: ${{ secrets.DEPLOY_KEY }}
Copy link

Copilot AI Dec 2, 2025

Choose a reason for hiding this comment

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

The change from token to ssh-key is likely incorrect. The actions/checkout@v4 action uses different parameters for different authentication methods:

  • token: for GitHub Personal Access Tokens (PATs)
  • ssh-key: for SSH private keys

If DEPLOY_KEY is a GitHub PAT (which is typical for secrets with this name), it should remain as token. If DEPLOY_KEY is actually an SSH private key, then:

  1. This change is correct, but the secret should be renamed to clarify it's an SSH key (e.g., DEPLOY_SSH_KEY)
  2. The SSH key must be in the proper private key format

Please verify which type of credential DEPLOY_KEY contains and use the appropriate parameter.

Suggested change
ssh-key: ${{ secrets.DEPLOY_KEY }}
token: ${{ secrets.DEPLOY_KEY }}

Copilot uses AI. Check for mistakes.
ref: main
fetch-depth: 0
- name: Set up Python
Expand Down