ci: migrate release-please off its archived action to googleapis/release-please-action@v5 - #16
Open
NickJosevski wants to merge 1 commit into
Open
ci: migrate release-please off its archived action to googleapis/release-please-action@v5#16NickJosevski wants to merge 1 commit into
NickJosevski wants to merge 1 commit into
Conversation
google-github-actions/release-please-action is archived; the action moved to googleapis/release-please-action, now v5. This is a migration, not a pin bump: - v4 removed the `command` input, so `command: github-release` becomes `skip-github-pull-request: true` and `command: release-pr` becomes `skip-github-release: true`. - v4 also removed most configuration inputs in favour of a config file, so `release-type` and `bump-minor-pre-major` move into release-please-config.json, with .release-please-manifest.json tracking the current version. bump-minor-pre-major is carried over deliberately: it is what keeps breaking changes inside 0.x rather than jumping to 1.0.0, and as an action input it would be silently ignored by v5. The outputs the tag step reads (release_created, major, minor) are unchanged in v5. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
NickJosevski
force-pushed
the
nj/release-please-v5
branch
from
August 22, 2026 01:19
644f256 to
a303299
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
google-github-actions/release-please-actionis archived. The action moved togoogleapis/release-please-action, now v5. Our whole release path currently runs on the unmaintained one.Why this isn't a pin bump
v4 made two breaking changes that both affect us:
1.
commandwas removed in favour of skip toggles:2. Most configuration inputs were removed in favour of a config file — including
release-typeandbump-minor-pre-major. Those move intorelease-please-config.json, with.release-please-manifest.jsontracking the current version:{ "bump-minor-pre-major": true, "packages": { ".": { "release-type": "simple" } } }bump-minor-pre-majoris carried over deliberately. #15 sets it as a v3 action input so the release stays 0.2.0 instead of 1.0.0. In v5 that input does not exist, so without this config file the setting would be silently ignored and the next breaking change would jump to 1.0.0.The outputs the tag-maintenance step reads —
release_created,major,minor— are unchanged in v5.Dependabot opened #17 bumping
google-github-actions/release-please-actionv3 → v4 while leavingcommand: github-releaseandcommand: release-prin place. v4 removedcommand, so merging #17 breaksrelease-please.yml.Its three checks pass, which is misleading:
tests.ymlnever exercisesrelease-please.yml, so nothing in CI can catch it. #17 also stays on the archived repo, so it's a dead end regardless. Recommend closing #17 in favour of this PR..release-please-manifest.jsonpins the current released version,0.1.1. That is correct only until 0.2.0 ships.If 0.2.0 is released before this merges, update
.release-please-manifest.jsonto0.2.0first, or release-please will think 0.1.1 is current and may re-propose an already-released version.What can't be verified before merge
release-please.ymlonly runs onpushtomain, so this cannot be exercised on a branch. The JSON validates and the workflow parses, but the first real run is the merge — worth merging alone and watching that run.Rebased 2026-08-22 after #11 merged, dropping the pin-bump commit it was stacked on.
🤖 Generated with Claude Code