Update DEFAULT_RUNNER_LABELS to match current GitHub runners#184
Open
kfess wants to merge 2 commits intoactions:mainfrom
Open
Update DEFAULT_RUNNER_LABELS to match current GitHub runners#184kfess wants to merge 2 commits intoactions:mainfrom
kfess wants to merge 2 commits intoactions:mainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR updates the DEFAULT_RUNNER_LABELS array to reflect the current GitHub Actions runner support status and improve auto-completion for workflow authors.
- Removed unsupported legacy runner labels.
- Added current and extended runner labels for Ubuntu, Windows, and macOS.
Comments suppressed due to low confidence (1)
languageservice/src/value-providers/default.ts:7
- [nitpick] Consider grouping runner labels by operating system (e.g., Ubuntu, Windows, macOS) with inline comments to improve readability and maintainability.
export const DEFAULT_RUNNER_LABELS = [
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
This PR updates the
DEFAULT_RUNNER_LABELSarray to reflect the current GitHub Actions runner support status, improving the VSCode auto-completion experience for workflow authors.Changes Made
Removed unsupported runners:
ubuntu-18.04,ubuntu-20.04(support ended April 2025)macos-10.15,macos-11,macos-12(support ended)Added current runners:
ubuntu-22.04ubuntu-24.04windows-2025windows-11-armmacos-13,macos-14,macos-15ubuntu-22.04-arm,ubuntu-24.04-armmacos-13-large,macos-14-large,macos-15-large,macos-latest-largemacos-13-xlarge,macos-14-xlarge,macos-15-xlarge,macos-latest-xlargeValidation
I conducted comprehensive validation of all GitHub Actions runners. Full results are available:
Related Issue
Resolves: #183
References