From 12dde0f92d1202446840e39c02491489e3c2df2b Mon Sep 17 00:00:00 2001 From: Jack Spiering <46534141+jackspiering@users.noreply.github.com> Date: Wed, 18 Feb 2026 12:54:50 +0100 Subject: [PATCH] Update linting workflow and actions Updated the linting workflow to use a newer checkout action and markdown linting action. Removed commented README.md path from ignore list. --- .github/workflows/linting.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index e75cca1..7a0b3c5 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -6,7 +6,6 @@ on: - main paths-ignore: - '.github/**' - # - 'README.md' - 'LICENSE' - '.gitignore' - '.gitattributes' @@ -16,7 +15,6 @@ on: - main paths-ignore: - '.github/**' - # - 'README.md' - 'LICENSE' - '.gitignore' - '.gitattributes' @@ -27,11 +25,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone this repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 - - name: Markdown Linting Action - id: lint - uses: avto-dev/markdown-lint@v1.5.0 + - name: Markdown Linting + uses: DavidAnson/markdownlint-cli2-action@v22 with: config: "./.markdownlint.yml" - args: "./services/**/*.md" + globs: "./services/**/*.md" + fix: true