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
2 changes: 1 addition & 1 deletion .github/workflows/version-bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
steps:
- name: Generate release token
id: app-token
uses: actions/create-github-app-token@fee1f7d63c2ff003460e3d139729b119787bc349 # v2
uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Deprecated app-id parameter used with Client ID secret

Medium Severity

After bumping to v3.1.1, the workflow still passes secrets.RELEASE_APP_CLIENT_ID to the deprecated app-id parameter. The v3.1.0 release specifically added client-id as the replacement input for Client IDs and deprecated app-id. The secret name strongly indicates it contains a Client ID, which means the parameter should be client-id rather than app-id. While app-id still works as a deprecated fallback, this mismatch risks breakage in a future version and may emit deprecation warnings.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 1188d3b. Configure here.

with:
app-id: ${{ secrets.RELEASE_APP_CLIENT_ID }}
private-key: ${{ secrets.RELEASE_APP_PRIVATE_KEY }}
Expand Down
Loading