From 762a868a70a1df1a6d474a1c4efb7142e4fc8fb6 Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Fri, 20 Mar 2026 21:05:44 -0400 Subject: [PATCH] fix: use `DavidAnson/markdownlint-cli2-action` - Using `make lint-markdown` poses a 'Docker-in-Docker' problem, and the `markdownlint-cli2` container does not have any files that it should. - Use the dedicated `DavidAnson/markdownlint-cli2-action` GitHub action to process the test instead. --- .gitea/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c12887b..5985296 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -45,8 +45,7 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Run markdown lint - run: make lint-markdown + - uses: DavidAnson/markdownlint-cli2-action@v19 test-unit: name: Unit Tests