From b4c9feab76d8025d1e83c653fa3990936df0e6c8 Mon Sep 17 00:00:00 2001 From: David Anson Date: Sun, 7 Apr 2024 17:08:56 -0700 Subject: [PATCH] Update to version 16.0.0. --- .github/workflows/changed.yml | 2 +- .github/workflows/example.yml | 2 +- README.md | 14 +++++++------- package.json | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/changed.yml b/.github/workflows/changed.yml index 5fbf9c2..ef03c5d 100644 --- a/.github/workflows/changed.yml +++ b/.github/workflows/changed.yml @@ -12,7 +12,7 @@ jobs: with: files: '**/*.md' separator: "," - - uses: DavidAnson/markdownlint-cli2-action@v15 + - uses: DavidAnson/markdownlint-cli2-action@v16 if: steps.changed-files.outputs.any_changed == 'true' with: globs: ${{ steps.changed-files.outputs.all_changed_files }} diff --git a/.github/workflows/example.yml b/.github/workflows/example.yml index 9aeef9b..0efbb74 100644 --- a/.github/workflows/example.yml +++ b/.github/workflows/example.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: DavidAnson/markdownlint-cli2-action@v15 + - uses: DavidAnson/markdownlint-cli2-action@v16 with: globs: | *.md diff --git a/README.md b/README.md index a9cd581..2c6e224 100644 --- a/README.md +++ b/README.md @@ -51,13 +51,13 @@ expressions. To lint Markdown files in the base directory of a project: ```yaml -- uses: DavidAnson/markdownlint-cli2-action@v15 +- uses: DavidAnson/markdownlint-cli2-action@v16 ``` To lint all Markdown files in a project: ```yaml -- uses: DavidAnson/markdownlint-cli2-action@v15 +- uses: DavidAnson/markdownlint-cli2-action@v16 with: globs: '**/*.md' ``` @@ -65,7 +65,7 @@ To lint all Markdown files in a project: To lint specific Markdown files in a project: ```yaml -- uses: DavidAnson/markdownlint-cli2-action@v15 +- uses: DavidAnson/markdownlint-cli2-action@v16 with: globs: | README.md @@ -76,7 +76,7 @@ To lint specific Markdown files in a project: To use a custom separator: ```yaml -- uses: DavidAnson/markdownlint-cli2-action@v15 +- uses: DavidAnson/markdownlint-cli2-action@v16 with: globs: 'README.md,CHANGELOG.md,docs/*.md' separator: ',' @@ -85,7 +85,7 @@ To use a custom separator: To fix supported issues when linting: ```yaml -- uses: DavidAnson/markdownlint-cli2-action@v15 +- uses: DavidAnson/markdownlint-cli2-action@v16 with: fix: true globs: '**/*.md' @@ -94,7 +94,7 @@ To fix supported issues when linting: To specify a custom configuration file: ```yaml -- uses: DavidAnson/markdownlint-cli2-action@v15 +- uses: DavidAnson/markdownlint-cli2-action@v16 with: config: 'config/custom.markdownlint.jsonc' globs: '**/*.md' @@ -103,7 +103,7 @@ To specify a custom configuration file: To prevent linting issues from failing the workflow run: ```yaml -- uses: DavidAnson/markdownlint-cli2-action@v15 +- uses: DavidAnson/markdownlint-cli2-action@v16 continue-on-error: true ``` diff --git a/package.json b/package.json index ef4ccda..8572bbd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "markdownlint-cli2-action", - "version": "15.0.0", + "version": "16.0.0", "description": "A GitHub Action to run the markdownlint-cli2 tool for linting Markdown/CommonMark files with the markdownlint library", "author": { "name": "David Anson",