Bump DavidAnson/markdownlint-cli2-action from 22 to 23 #107
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: Markdown | |
| on: pull_request | |
| # Detect if this action is already running, and cancel it. | |
| # This most likely happened because a second push has been made to a branch. | |
| concurrency: | |
| group: ${{ github.repository_id }}-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| markdown: | |
| name: Markdownlint | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Run markdownlint | |
| uses: DavidAnson/markdownlint-cli2-action@v23 | |
| with: | |
| globs: | | |
| *.md | |
| docs/*.md |