chore: bump @actions/languageservices packages to 0.3.52#585
chore: bump @actions/languageservices packages to 0.3.52#585
Conversation
There was a problem hiding this comment.
Pull request overview
This PR bumps the GitHub Actions language services dependencies to pick up new workflow context completions/validation/hover support (notably the new job.workflow_* context properties).
Changes:
- Bump
@actions/languageserverfrom^0.3.46→^0.3.52 - Bump
@actions/workflow-parserfrom^0.3.46→^0.3.52 - Update
package-lock.jsonto the new transitive versions pulled in by the bump
Show a summary per file
| File | Description |
|---|---|
| package.json | Updates the language services package versions used by the extension. |
| package-lock.json | Updates resolved versions/transitive graph (including new engines constraints). |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 1/2 changed files
- Comments generated: 1
| "@actions/languageserver": "^0.3.52", | ||
| "@actions/workflow-parser": "^0.3.52", |
There was a problem hiding this comment.
The bumped @actions/languageserver/@actions/workflow-parser versions pull in @actions/* packages that declare "engines": { "node": ">= 20" } (see package-lock.json entries). This repo/extension currently targets Node >=16 (package.json engines + CI uses setup-node 16.x), so this upgrade is likely to break npm ci/tests and potentially the extension runtime in VS Code versions still running on Node 16/18.
Suggested fix: either (a) keep these dependencies on the latest Node-16-compatible release, or (b) update the extension/CI baseline to Node 20 (bump package.json engines.node, update GitHub workflows node-version, and ensure the VS Code engine target is compatible with Node 20).
| "@actions/languageserver": "^0.3.52", | |
| "@actions/workflow-parser": "^0.3.52", | |
| "@actions/languageserver": "0.3.51", | |
| "@actions/workflow-parser": "0.3.51", |
….3.52 Picks up job.workflow_* context properties for autocomplete, validation, and hover support. Release: https://github.com/actions/languageservices/releases/tag/release-v0.3.52
14b5958 to
59a5f8b
Compare
Summary
Bumps
@actions/languageserverand@actions/workflow-parserfrom ^0.3.46 → ^0.3.52.What's new
job.workflow_*context properties — autocomplete, validation, and hover forjob.workflow_ref,job.workflow_sha,job.workflow_repository,job.workflow_file_pathRelated