From bb6632bf999ad7b798bf86de88d7e96561d511a3 Mon Sep 17 00:00:00 2001 From: Abtin Keshavarzian Date: Tue, 3 Oct 2023 10:23:40 -0700 Subject: [PATCH] [github-actions] fix the `codespell` version in `spell-check` job This commit fixes the version of `codespell` installed in the `spell-check` job of `build` workflow to version `2.2.4`. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6d20672f275..1ac28efd3e1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -95,7 +95,7 @@ jobs: - name: Bootstrap run: | python -m pip install --upgrade pip - pip install codespell + pip install --force-reinstall codespell==2.2.4 - name: Check run: | script/code-spell check