ShellCheck on the runners is old. Switch back to the Docker image (alt method).

This commit is contained in:
supahgreg 2025-11-11 14:33:18 -06:00
parent ef5c881925
commit 9028a7ee94
No known key found for this signature in database

View File

@ -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 {} +