From 9ae55853adf62fd25292cd5028ab8b34b4bf244b Mon Sep 17 00:00:00 2001 From: Gustavo Valverde Date: Mon, 11 Dec 2023 21:08:59 +0000 Subject: [PATCH] fix(ci): use official `codespell` action (#8087) --- .github/workflows/ci-lint.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-lint.yml b/.github/workflows/ci-lint.yml index 701f1c1c6..50296e738 100644 --- a/.github/workflows/ci-lint.yml +++ b/.github/workflows/ci-lint.yml @@ -160,7 +160,7 @@ jobs: needs: changed-files steps: - uses: actions/checkout@v4.1.1 - - uses: plettich/action-codespell@master + - uses: codespell-project/actions-codespell@v2.0 with: - github_token: ${{ secrets.github_token }} - level: warning + only_warn: 1 +