diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml index f9208695b..37bf251fc 100644 --- a/.github/workflows/spellcheck.yml +++ b/.github/workflows/spellcheck.yml @@ -8,11 +8,12 @@ jobs: spellcheck: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - name: misspell + - uses: actions/checkout@v4 + - name: Run misspell uses: reviewdog/action-misspell@v1 with: github_token: ${{ secrets.github_token }} - reporter: github-pr-review + reporter: github-pr-annotations locale: "US" - exclude: '*.lock' \ No newline at end of file + pattern: '*.md' + fail_on_error: true