[release/8.0] Update markdownlint workflow to Node LTS#126573
Merged
richlander merged 2 commits intodotnet:release/8.0from Apr 6, 2026
Merged
[release/8.0] Update markdownlint workflow to Node LTS#126573richlander merged 2 commits intodotnet:release/8.0from
richlander merged 2 commits intodotnet:release/8.0from
Conversation
Use the current checkout/setup-node actions and switch markdownlint to Node LTS so the workflow no longer fails on the old Node 16 runtime. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
|
Tagging subscribers to this area: @dotnet/runtime-infrastructure |
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the Markdownlint GitHub Actions workflow on the release/8.0 branch to run on the Node.js LTS line, addressing failures caused by the previous Node 16 runtime.
Changes:
- Bump
actions/checkoutto@v6 - Bump
actions/setup-nodeto@v6 - Switch Node selection from
16.xtolts/*
Use a specific Node version line for the markdownlint workflow instead of lts/*, while keeping the release/8.0 fix for the Node 16 incompatibility. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Member
Author
|
Example failure: |
Member
Author
|
/ba-g "Markdownlint change" |
akoeplinger
approved these changes
Apr 6, 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.
Note
This PR was AI/Copilot-generated.
This fixes the release/8.0 Markdownlint workflow failure caused by running the current
markdownlint-clion the old Node 16 runtime.actions/checkoutto@v6actions/setup-nodeto@v6node-version: 'lts/*'\n\nThis restores markdownlint for PRs like [release/8.0] Update WebAssembly Helix image versions #126528 where the markdown files themselves were already clean.