Skip to content

Commit e484d8e

Browse files
richlanderCopilot
andauthored
[release/8.0] Update markdownlint workflow to Node LTS (#126573)
> [!NOTE] > This PR was AI/Copilot-generated. This fixes the release/8.0 Markdownlint workflow failure caused by running the current `markdownlint-cli` on the old Node 16 runtime. - update `actions/checkout` to `@v6` - update `actions/setup-node` to `@v6` - switch the workflow to `node-version: 'lts/*'`\n\nThis restores markdownlint for PRs like #126528 where the markdown files themselves were already clean. --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 11a922e commit e484d8e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/markdownlint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v6
2121
- name: Use Node.js
22-
uses: actions/setup-node@v1
22+
uses: actions/setup-node@v6
2323
with:
24-
node-version: 16.x
24+
node-version: '22.x'
2525
- name: Run Markdownlint
2626
run: |
2727
echo "::add-matcher::.github/workflows/markdownlint-problem-matcher.json"

0 commit comments

Comments
 (0)