fix(ci): replace compromised codfish/semantic-release-action with cycjimmy#151
Merged
Conversation
Copilot
AI
changed the title
[WIP] Fix failing GitHub Actions job Release
fix(ci): replace compromised codfish/semantic-release-action with cycjimmy
Jul 22, 2026
StoneyJackson
approved these changes
Jul 22, 2026
StoneyJackson
approved these changes
Jul 22, 2026
There was a problem hiding this comment.
Pull request overview
Updates the Release GitHub Actions workflow to unblock releases after codfish/semantic-release-action was compromised and blocked by GitHub, by switching to cycjimmy/semantic-release-action@v4 and aligning inputs/outputs to the new action’s API.
Changes:
- Replace
codfish/semantic-release-action@v3withcycjimmy/semantic-release-action@v4. - Migrate
additional-packagestoextra_pluginswith newline-separated plugin entries. - Update conditional/tagging logic to use the new output variable names (e.g.,
new_release_published,new_release_version, etc.).
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
🎉 This PR is included in version 8.0.4 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
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.
codfish/semantic-release-actionwas compromised and subsequently blocked by GitHub, causing the Release workflow to fail withRepository access blockedat action download time.Replaces it with
cycjimmy/semantic-release-action@v4(node20, actively maintained). Key API differences accounted for:additional-packages→extra_plugins(newline-separated, not JSON array)release-version→new_release_version,release-major→new_release_major_version,release-minor→new_release_minor_version,new-release-published→new_release_publishedThe authors of this PR...