From 9028a7ee94829679d85df53b1e7e545d6d2a2dc4 Mon Sep 17 00:00:00 2001 From: supahgreg Date: Tue, 11 Nov 2025 14:33:18 -0600 Subject: [PATCH] ShellCheck on the runners is old. Switch back to the Docker image (alt method). --- .github/workflows/shell-code-quality.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/shell-code-quality.yml b/.github/workflows/shell-code-quality.yml index b50697430..571ad1330 100644 --- a/.github/workflows/shell-code-quality.yml +++ b/.github/workflows/shell-code-quality.yml @@ -33,5 +33,6 @@ jobs: # TODO: Remove after addressing initial issues continue-on-error: true run: | - shellcheck --version - find .docker lib/dojo-src/rebuild-dojo.sh utils -type f -name '*.sh' -print0 | xargs -0 shellcheck --shell=busybox + docker run --rm koalaman/shellcheck:stable --version + find .docker lib/dojo-src utils -type f -name '*.sh' -exec \ + docker run --rm -v "$PWD:/mnt" -w /mnt koalaman/shellcheck:stable --shell=busybox {} +