fix: bump internal action pins to HEAD so the conventional bump commit runs - #31
Merged
Merged
Conversation
adrmachado-public
approved these changes
Aug 19, 2026
There was a problem hiding this comment.
Pull request overview
Updates this repository’s GitHub Actions workflows and composite actions to use the newer internal action revision (d08e270…) so the updated conventional release-bump commit message behavior (from #30) is actually applied during release automation.
Changes:
- Bump internal
setup-nodepins across CI and release-related workflows tod08e270…. - Bump internal
version-bump,npm-publish,release-notes, andsetup-gitpins tod08e270…where used. - Remove the last remaining references to the older pinned revision (
45ee569…).
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| actions/version-bump/action.yml | Updates internal setup-git / setup-node references to the newer pinned SHA. |
| actions/release-notes/action.yml | Updates internal setup-node reference to the newer pinned SHA. |
| actions/npm-publish/action.yml | Updates internal setup-node reference to the newer pinned SHA. |
| .github/workflows/validate-scripts.yml | Updates internal setup-node pin used for script validation. |
| .github/workflows/release-pipeline.yml | Updates internal version-bump pin used during the release pipeline. |
| .github/workflows/release-dry-run.yml | Updates internal setup-node and npm-publish pins used for dry runs. |
| .github/workflows/publish.yml | Updates internal npm-publish and release-notes pins used for publishing. |
| .github/workflows/ci.yml | Updates internal setup-node pin used by the reusable CI workflow. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
69
to
72
| - name: "Bump version" | ||
| id: bump | ||
| uses: braintree/web-sdk-github-actions/actions/version-bump@45ee569cf478259fa14e8f116136d6d6fd93f061 | ||
| uses: braintree/web-sdk-github-actions/actions/version-bump@d08e2700fb9ffdfe87200621e25ad63e47014941 | ||
| with: |
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.
The pipeline still pinned
version-bump@45ee569, which predates #30, so it ran the oldRelease v...commit and tripped consumer commit-msg hooks. Bumps all 11 internal pins tod08e270so the conventional-commit fix actually runs.