Skip to content

Commit

Permalink
Update documentation and examples to reference @V13.
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidAnson committed Sep 20, 2023
1 parent 88364f7 commit ed4dec6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/changed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
with:
files: '**/*.md'
separator: ","
- uses: DavidAnson/markdownlint-cli2-action@v12
- uses: DavidAnson/markdownlint-cli2-action@v13
if: steps.changed-files.outputs.any_changed == 'true'
with:
globs: ${{ steps.changed-files.outputs.all_changed_files }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DavidAnson/markdownlint-cli2-action@v12
- uses: DavidAnson/markdownlint-cli2-action@v13
with:
globs: |
*.md
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,21 +67,21 @@ expressions.
To lint Markdown files in the base directory of a project:

```yaml
- uses: DavidAnson/markdownlint-cli2-action@v12
- uses: DavidAnson/markdownlint-cli2-action@v13
```

To lint all Markdown files in a project:

```yaml
- uses: DavidAnson/markdownlint-cli2-action@v12
- uses: DavidAnson/markdownlint-cli2-action@v13
with:
globs: '**/*.md'
```

To lint specific Markdown files in a project:

```yaml
- uses: DavidAnson/markdownlint-cli2-action@v12
- uses: DavidAnson/markdownlint-cli2-action@v13
with:
globs: |
README.md
Expand All @@ -92,7 +92,7 @@ To lint specific Markdown files in a project:
To use a custom separator:

```yaml
- uses: DavidAnson/markdownlint-cli2-action@v12
- uses: DavidAnson/markdownlint-cli2-action@v13
with:
globs: 'README.md,CHANGELOG.md,docs/*.md'
separator: ','
Expand All @@ -101,7 +101,7 @@ To use a custom separator:
To fix supported issues when linting:

```yaml
- uses: DavidAnson/markdownlint-cli2-action@v12
- uses: DavidAnson/markdownlint-cli2-action@v13
with:
fix: true
globs: '**/*.md'
Expand All @@ -110,7 +110,7 @@ To fix supported issues when linting:
To specify a custom configuration file:

```yaml
- uses: DavidAnson/markdownlint-cli2-action@v12
- uses: DavidAnson/markdownlint-cli2-action@v13
with:
config: 'config/custom.markdownlint.jsonc'
globs: '**/*.md'
Expand All @@ -119,7 +119,7 @@ To specify a custom configuration file:
To prevent linting issues from failing the workflow run:

```yaml
- uses: DavidAnson/markdownlint-cli2-action@v12
- uses: DavidAnson/markdownlint-cli2-action@v13
continue-on-error: true
```

Expand Down

0 comments on commit ed4dec6

Please sign in to comment.