ci: bump actions to latest, fix Node 20 deprecation, bump @vscode/vsce to v3 - #477
Merged
Merged
Conversation
…/vsce to v3 - release.yml: actions/checkout v3.6.0 → v7.0.1 (Node 24 native, no deprecation warning) - tests.yml: checkout v5.0.1 → v7.0.1, setup-node v5.0.0 → v7.0.0, cache v5.0.5 → v6.1.0 - update-motoko.yml: checkout v4.3.1 → v7.0.1, setup-node v4.4.0 → v7.0.0, cache v4.3.0 → v6.1.0, create-github-app-token v1.12.0 → v3.2.0, create-pull-request v7.0.11 → v8.1.1 - @vscode/vsce: bumped from ^2.15.0 to ^3.9.2 (requires Node >= 20; CI already runs Node 24) - package-lock.json: regenerated for vsce v3 dependency tree Co-Authored-By: Claude Code <noreply@anthropic.com>
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.
What
Fixes the CI failures on the v0.24.0 release publish step (run #34364094084).
Actions bumped (all workflows:
release.yml,tests.yml,update-motoko.yml)actions/checkoutactions/setup-nodeactions/cacheactions/create-github-app-tokenpeter-evans/create-pull-request@vscode/vscebumped: v2 → v3@vscode/vscebumped from^2.15.0to^3.9.2(resolved: v3.9.2). v3 requires Node >= 20; CI already runs Node 24 so this is safe.Why
The v0.24.0 release run (#34364094084) failed with two issues:
Node 20 deprecation —
actions/checkout@v3.6.0targets Node.js 20 and was forced to Node 24 by the runner, emitting a deprecation warning. All workflows now use native Node 24 actions.Request timeout: /_apis/gallery— The v2vsce publishtimed out communicating with the VS Code Marketplace API. v3 brings updated@azure/identityand other networking improvements.The PAT expiration (run #34470217161) is being handled separately.
Verification
npm ci✅npm run compile✅npm test— 24 suites, 276 tests all pass ✅npm run --silent lint— zero warnings ✅npx vsce package— successful packaging with vsce v3 ✅🤖 Generated with Claude Code