ci: migrate release-please to client-id auth + bump to @v3#43
Conversation
actions/create-github-app-token bumped from @v2 to @V3 (v2 doesn't accept the modern `client-id` input). Workflow auth switched from RELEASE_PLEASE_APP_ID (deprecated app-id input) to RELEASE_PLEASE_CLIENT_ID (modern client-id input). Aligns with the org-wide migration (smorinlabs sibling repos + smorin/doxa-research). Once this PR merges and a release-please run verifies the new auth path, RELEASE_PLEASE_APP_ID secret should be deleted. RELEASE_PLEASE_APP_TOKEN PAT fallback preserved unchanged. Also adds .github/actionlint.yaml to suppress two false positives from actionlint's stale bundled metadata for create-github-app-token@v3 (it doesn't yet know about the `client-id` input). Delete that file once a newer actionlint release ships with updated metadata.
|
Warning Review limit reached
More reviews will be available in 49 minutes and 33 seconds. Learn how PR review limits work. Your organization has used up its prepaid credits, and credit purchases are no longer available. Enable the review add-on in the billing tab to keep reviews running — you're only billed for reviews past your plan's rate limits ($0.25/file). ⌛ How to resolve this issue?After more reviews become available, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans include higher PR review limits than trial, open-source, and free plans. In all cases, reviews become available again over time. During sustained high-volume PR review activity, CodeRabbit may temporarily slow when the next review becomes available. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Pull request overview
This PR updates the repository’s release automation workflow authentication to use the modern GitHub App client-id mechanism (required for actions/create-github-app-token@v3), while preserving the existing PAT fallback path, and adds a narrowly-scoped actionlint suppression for known stale bundled metadata.
Changes:
- Bump
actions/create-github-app-tokenusage from@v2to@v3in the release automation workflow. - Migrate GitHub App auth from deprecated
app-id/RELEASE_PLEASE_APP_IDtoclient-id/RELEASE_PLEASE_CLIENT_IDin both jobs. - Add
.github/actionlint.yamlto suppress two specific actionlint false positives forcreate-github-app-token@v3+client-id.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/release-please.yml | Switch release-please + Cargo.lock sync jobs to mint tokens via create-github-app-token@v3 using client-id. |
| .github/actionlint.yaml | Add scoped ignores to silence known actionlint false positives related to client-id on create-github-app-token@v3. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Summary
actions/create-github-app-tokenfrom@v2to@v3(v2 doesn't accept the modernclient-idinput).RELEASE_PLEASE_APP_ID(deprecatedapp-idinput) toRELEASE_PLEASE_CLIENT_ID(modernclient-idinput) in bothrelease-pleaseandsync-cargo-lockjobs..github/actionlint.yamlto suppress two false positives from actionlint's stale bundled metadata forcreate-github-app-token@v3(it doesn't yet know aboutclient-id).RELEASE_PLEASE_APP_TOKENPAT fallback preserved unchanged.Aligns toggle with the org-wide migration (smorinlabs sibling repos +
smorin/doxa-research). After merge + green verification run, the legacyRELEASE_PLEASE_APP_IDsecret will be deleted.Test plan
ci:commit to main and verify the release-please workflow'sMint release-please app tokenstep succeeds withclient-idand emits zero deprecation warningsRELEASE_PLEASE_APP_IDsecret after green verification