fix(ci): use semver version for parse-changelog in publish workflow#118
Merged
Conversation
`taiki-e/install-action`'s `tool:` field only accepts semver version specifiers (e.g. `0.6.16`); it does not resolve commit SHAs. The SHA form is correct for action `uses:` references but not for `install-action`'s tool argument, which is parsed internally to look up a tool's release tag. Was failing the Publish workflow with: "install-action does not support semver operators: 'a7723d830fe18d310a89f9692ba0d1ceb069eab7'".
mbjorkqvist
approved these changes
May 12, 2026
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.
Summary
The Publish workflow (run 25732616857) fails at the
Install parse-changelogstep with:taiki-e/install-action'stool:field is parsed internally to look up a release tag — it only accepts semver version specifiers (0.6.16,0.6, or omitted for latest). The SHA-pinning convention is correct for actionuses:references (GitHub resolves those) but not for this tool argument.Fix:
tool: parse-changelog@0.6.16(the version that was annotated as the intent in the comment).