Skip to content

Commit b4c9fea

Browse files
committed
Update to version 16.0.0.
1 parent 349248f commit b4c9fea

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/changed.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
with:
1313
files: '**/*.md'
1414
separator: ","
15-
- uses: DavidAnson/markdownlint-cli2-action@v15
15+
- uses: DavidAnson/markdownlint-cli2-action@v16
1616
if: steps.changed-files.outputs.any_changed == 'true'
1717
with:
1818
globs: ${{ steps.changed-files.outputs.all_changed_files }}

.github/workflows/example.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v4
8-
- uses: DavidAnson/markdownlint-cli2-action@v15
8+
- uses: DavidAnson/markdownlint-cli2-action@v16
99
with:
1010
globs: |
1111
*.md

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -51,21 +51,21 @@ expressions.
5151
To lint Markdown files in the base directory of a project:
5252

5353
```yaml
54-
- uses: DavidAnson/markdownlint-cli2-action@v15
54+
- uses: DavidAnson/markdownlint-cli2-action@v16
5555
```
5656
5757
To lint all Markdown files in a project:
5858
5959
```yaml
60-
- uses: DavidAnson/markdownlint-cli2-action@v15
60+
- uses: DavidAnson/markdownlint-cli2-action@v16
6161
with:
6262
globs: '**/*.md'
6363
```
6464
6565
To lint specific Markdown files in a project:
6666
6767
```yaml
68-
- uses: DavidAnson/markdownlint-cli2-action@v15
68+
- uses: DavidAnson/markdownlint-cli2-action@v16
6969
with:
7070
globs: |
7171
README.md
@@ -76,7 +76,7 @@ To lint specific Markdown files in a project:
7676
To use a custom separator:
7777
7878
```yaml
79-
- uses: DavidAnson/markdownlint-cli2-action@v15
79+
- uses: DavidAnson/markdownlint-cli2-action@v16
8080
with:
8181
globs: 'README.md,CHANGELOG.md,docs/*.md'
8282
separator: ','
@@ -85,7 +85,7 @@ To use a custom separator:
8585
To fix supported issues when linting:
8686
8787
```yaml
88-
- uses: DavidAnson/markdownlint-cli2-action@v15
88+
- uses: DavidAnson/markdownlint-cli2-action@v16
8989
with:
9090
fix: true
9191
globs: '**/*.md'
@@ -94,7 +94,7 @@ To fix supported issues when linting:
9494
To specify a custom configuration file:
9595
9696
```yaml
97-
- uses: DavidAnson/markdownlint-cli2-action@v15
97+
- uses: DavidAnson/markdownlint-cli2-action@v16
9898
with:
9999
config: 'config/custom.markdownlint.jsonc'
100100
globs: '**/*.md'
@@ -103,7 +103,7 @@ To specify a custom configuration file:
103103
To prevent linting issues from failing the workflow run:
104104
105105
```yaml
106-
- uses: DavidAnson/markdownlint-cli2-action@v15
106+
- uses: DavidAnson/markdownlint-cli2-action@v16
107107
continue-on-error: true
108108
```
109109

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "markdownlint-cli2-action",
3-
"version": "15.0.0",
3+
"version": "16.0.0",
44
"description": "A GitHub Action to run the markdownlint-cli2 tool for linting Markdown/CommonMark files with the markdownlint library",
55
"author": {
66
"name": "David Anson",

0 commit comments

Comments
 (0)