From 5b7c9f74fec47e6b15667b2cc23c63dff11e449e Mon Sep 17 00:00:00 2001 From: David Anson Date: Mon, 2 Jan 2023 16:07:54 -0800 Subject: [PATCH] Update documentation and examples to reference @v9. --- .github/workflows/changed.yml | 2 +- .github/workflows/example.yml | 2 +- README.md | 14 +++++++------- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/changed.yml b/.github/workflows/changed.yml index c9ffa5e..7929943 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@v8 + - uses: DavidAnson/markdownlint-cli2-action@v9 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 723792b..3670839 100644 --- a/.github/workflows/example.yml +++ b/.github/workflows/example.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: DavidAnson/markdownlint-cli2-action@v8 + - uses: DavidAnson/markdownlint-cli2-action@v9 with: globs: | *.md diff --git a/README.md b/README.md index 9b7adfb..a50c187 100644 --- a/README.md +++ b/README.md @@ -52,13 +52,13 @@ expressions. To lint Markdown files in the base directory of a project: ```yaml -- uses: DavidAnson/markdownlint-cli2-action@v8 +- uses: DavidAnson/markdownlint-cli2-action@v9 ``` To lint all Markdown files in a project: ```yaml -- uses: DavidAnson/markdownlint-cli2-action@v8 +- uses: DavidAnson/markdownlint-cli2-action@v9 with: globs: '**/*.md' ``` @@ -66,7 +66,7 @@ To lint all Markdown files in a project: To lint specific Markdown files in a project: ```yaml -- uses: DavidAnson/markdownlint-cli2-action@v8 +- uses: DavidAnson/markdownlint-cli2-action@v9 with: globs: | README.md @@ -77,7 +77,7 @@ To lint specific Markdown files in a project: To use a custom separator: ```yaml -- uses: DavidAnson/markdownlint-cli2-action@v8 +- uses: DavidAnson/markdownlint-cli2-action@v9 with: globs: 'README.md,CHANGELOG.md,docs/*.md' separator: ',' @@ -86,7 +86,7 @@ To use a custom separator: To fix supported issues when linting: ```yaml -- uses: DavidAnson/markdownlint-cli2-action@v8 +- uses: DavidAnson/markdownlint-cli2-action@v9 with: command: fix globs: '**/*.md' @@ -95,7 +95,7 @@ To fix supported issues when linting: To specify a custom configuration file: ```yaml -- uses: DavidAnson/markdownlint-cli2-action@v8 +- uses: DavidAnson/markdownlint-cli2-action@v9 with: command: config globs: | @@ -106,7 +106,7 @@ To specify a custom configuration file: To prevent linting issues from failing the workflow run: ```yaml -- uses: DavidAnson/markdownlint-cli2-action@v8 +- uses: DavidAnson/markdownlint-cli2-action@v9 continue-on-error: true ```