From 448db8e975f9593b0ed43f40a5657e2a3c0b3be9 Mon Sep 17 00:00:00 2001 From: Chelsea Mafrica Date: Wed, 25 Oct 2023 12:49:09 -0700 Subject: [PATCH] gha: add dependencies for spell checker In the migration from the tests repo to the kata containers repo we missed two huspell dictionaries for static checks; add them. Fixes #8315 Signed-off-by: Chelsea Mafrica (cherry picked from commit c20aadd7a8daab92513d7665ad54ea8cc07b509e) --- .github/workflows/static-checks.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/static-checks.yaml b/.github/workflows/static-checks.yaml index c55adf4c7f..c0c0463124 100644 --- a/.github/workflows/static-checks.yaml +++ b/.github/workflows/static-checks.yaml @@ -187,7 +187,7 @@ jobs: echo "/usr/local/go/bin" >> $GITHUB_PATH - name: Install system dependencies run: | - sudo apt-get -y install moreutils hunspell pandoc + sudo apt-get -y install moreutils hunspell hunspell-en-gb hunspell-en-us pandoc - name: Run check run: | export PATH=${PATH}:${GOPATH}/bin