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/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:
- name: Get auth token
id: 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 input used instead of client-id

Low Severity

The action was bumped to v3.1.1, which deprecated the app-id input in favor of the new client-id input. The variable vars.SENTRY_RELEASE_BOT_CLIENT_ID is already named as a Client ID and is being passed via the deprecated app-id parameter. Since this major version bump is the ideal time to adopt the new client-id input, the parameter name on line 28 can be updated from app-id to client-id to align with the action's recommended usage and avoid future breakage when app-id is removed.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 28b799d. Configure here.

with:
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}
Expand Down
Loading