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 @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- id: app-token
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
Comment on lines +17 to 20
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🚩 Major version bump may require input parameter name changes

The action is bumped from v2.2.1 to v3.0.0 — a major version change that typically signals breaking API changes. The workflow currently uses app-id and private-key (hyphenated) as input names (.github/workflows/release.yml:19-20). Major versions of actions/create-github-app-token have historically changed input naming conventions (e.g., from hyphenated to underscored). I could not verify the v3 input API from repository context alone, so this is not flagged as a bug, but it warrants investigation to ensure app-id and private-key are still valid input names in v3.0.0. If they were renamed to app_id and private_key, the workflow would silently fail to pass the required credentials.

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

Expand Down
Loading