From 4f70fe1a05d227c3a2ec4be1ea5f0f979643fd82 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 9 Dec 2025 10:02:07 +0000 Subject: [PATCH 1/2] build(deps): bump DavidAnson/markdownlint-cli2-action Bumps [DavidAnson/markdownlint-cli2-action](https://github.com/davidanson/markdownlint-cli2-action) from 21.0.0 to 22.0.0. - [Release notes](https://github.com/davidanson/markdownlint-cli2-action/releases) - [Commits](https://github.com/davidanson/markdownlint-cli2-action/compare/30a0e04f1870d58f8d717450cc6134995f993c63...07035fd053f7be764496c0f8d8f9f41f98305101) --- updated-dependencies: - dependency-name: DavidAnson/markdownlint-cli2-action dependency-version: 22.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/markdown.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/markdown.yml b/.github/workflows/markdown.yml index ae45ea4326..9e677addd0 100644 --- a/.github/workflows/markdown.yml +++ b/.github/workflows/markdown.yml @@ -15,6 +15,6 @@ jobs: runs-on: ${{ vars.LINKERD2_PROXY_RUNNER || 'ubuntu-24.04' }} steps: - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 - - uses: DavidAnson/markdownlint-cli2-action@30a0e04f1870d58f8d717450cc6134995f993c63 + - uses: DavidAnson/markdownlint-cli2-action@07035fd053f7be764496c0f8d8f9f41f98305101 with: globs: "**/*.md" From 000bbdae3384a463f5a82d3284a66257f64205f7 Mon Sep 17 00:00:00 2001 From: katelyn martin Date: Mon, 8 Dec 2025 00:00:00 +0000 Subject: [PATCH 2/2] nit: line wrap at 80 columns in `copilot-instructions.md` Signed-off-by: katelyn martin --- .github/copilot-instructions.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index a296ea409d..8e98f14005 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -53,7 +53,8 @@ For Rust source files, enforce this layout: 5. **Impl blocks** - Implement methods in the same order as types above. - - Precede each type’s `impl` block with a header comment: `// === ===` + - Precede each type’s `impl` block with a header comment: + `// === ===` 6. **Tests** - End with a `tests` module guarded by `#[cfg(test)]`.