fix: sync published version and update push action#244
Merged
Conversation
- Upgrade ad-m/github-push-action from v0.8.0 to v1.1.0 (Node 24 support) - Add contents: write permission so the workflow can push commits/tags - Switch from secrets.GIT_TOKEN to secrets.GITHUB_TOKEN Generated with [Devin](https://devin.ai) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
The npm publish succeeded for version 1.7.3, but the workflow failed to push the version bump back to the repository. This commit syncs the package.json to match the published version. Generated with [Devin](https://devin.ai) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
tnschneider
approved these changes
Jun 24, 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
libs/web-socket-client/package.jsonto version1.7.3(already published to npm)ad-m/github-push-actionfromv0.8.0tov1.1.0for Node 24 compatibilitycontents: writepermission so the workflow can push commits and tagssecrets.GIT_TOKENtosecrets.GITHUB_TOKENRoot Cause
The publish step succeeded with version
1.7.3, but the workflow failed at the push step with:The
ad-m/github-push-action@v0.8.0action runs on Node 20 and was using theGIT_TOKENsecret, which appears to be invalid or expired. Versionv1.1.0of the action upgrades to Node 24 and works with the built-inGITHUB_TOKEN.Important Note
GITHUB_TOKENrequires the repository to allow Read and write permissions for workflows:Settings > Actions > General > Workflow permissions > Read and write permissionsTest plan
Merge on Mainworkflow succeeds and pushes the next version bump back tomainGenerated with Devin