From 08b5e7567a178f151d91fea5c47c6b32c0e75e06 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Nov 2025 12:06:22 +0000 Subject: [PATCH 1/4] Bump DavidAnson/markdownlint-cli2-action from 20.0.0 to 21.0.0 Bumps [DavidAnson/markdownlint-cli2-action](https://github.com/davidanson/markdownlint-cli2-action) from 20.0.0 to 21.0.0. - [Release notes](https://github.com/davidanson/markdownlint-cli2-action/releases) - [Commits](https://github.com/davidanson/markdownlint-cli2-action/compare/992badcdf24e3b8eb7e87ff9287fe931bcb00c6e...30a0e04f1870d58f8d717450cc6134995f993c63) --- updated-dependencies: - dependency-name: DavidAnson/markdownlint-cli2-action dependency-version: 21.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/markdownlint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/markdownlint.yml b/.github/workflows/markdownlint.yml index 75a42a9091137..d882d6d4af21b 100644 --- a/.github/workflows/markdownlint.yml +++ b/.github/workflows/markdownlint.yml @@ -27,7 +27,7 @@ jobs: egress-policy: audit - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 - - uses: DavidAnson/markdownlint-cli2-action@992badcdf24e3b8eb7e87ff9287fe931bcb00c6e # v20.0.0 + - uses: DavidAnson/markdownlint-cli2-action@30a0e04f1870d58f8d717450cc6134995f993c63 # v21.0.0 with: config: ".markdownlint-cli2.jsonc" globs: "**/*.md" From fc5258f8ba384ef2770921239104be23299b1a8d Mon Sep 17 00:00:00 2001 From: Genevieve Warren <24882762+gewarren@users.noreply.github.com> Date: Wed, 19 Nov 2025 16:28:03 -0800 Subject: [PATCH 2/4] use any table alignment --- .markdownlint-cli2.jsonc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.markdownlint-cli2.jsonc b/.markdownlint-cli2.jsonc index 1d5279d4fda48..ec86ea46781e5 100644 --- a/.markdownlint-cli2.jsonc +++ b/.markdownlint-cli2.jsonc @@ -59,7 +59,8 @@ "MD050": { "style": "asterisk" }, - "MD051": false + "MD051": false, + "MD060": "any" }, "ignores": [ ".github/", From 4c273c43e2cdee064f3bf2c85b2cb7bf35f463b1 Mon Sep 17 00:00:00 2001 From: Genevieve Warren <24882762+gewarren@users.noreply.github.com> Date: Wed, 19 Nov 2025 16:32:10 -0800 Subject: [PATCH 3/4] Use correct syntax --- .markdownlint-cli2.jsonc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.markdownlint-cli2.jsonc b/.markdownlint-cli2.jsonc index ec86ea46781e5..dd33c0d249c32 100644 --- a/.markdownlint-cli2.jsonc +++ b/.markdownlint-cli2.jsonc @@ -60,7 +60,9 @@ "style": "asterisk" }, "MD051": false, - "MD060": "any" + "MD060": { + "style": "any" + } }, "ignores": [ ".github/", From 30669df8a115ebfaa62efd5c4545c664729bb63f Mon Sep 17 00:00:00 2001 From: Genevieve Warren <24882762+gewarren@users.noreply.github.com> Date: Wed, 19 Nov 2025 16:39:28 -0800 Subject: [PATCH 4/4] Disable MD060 rule in markdownlint configuration --- .markdownlint-cli2.jsonc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.markdownlint-cli2.jsonc b/.markdownlint-cli2.jsonc index dd33c0d249c32..64c5c81c2e2f5 100644 --- a/.markdownlint-cli2.jsonc +++ b/.markdownlint-cli2.jsonc @@ -60,9 +60,7 @@ "style": "asterisk" }, "MD051": false, - "MD060": { - "style": "any" - } + "MD060": false }, "ignores": [ ".github/",