fix(pr-validation): remove sudo from shellcheck install

The act runner container runs as root and does not have sudo
installed, causing CI job 187 to fail with "sudo: command not found".

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
2026-05-16 21:08:24 +00:00
committed by Gandalf the Greybeard [agent]
parent d52283dc35
commit adcce5a531
+1 -1
View File
@@ -34,7 +34,7 @@ jobs:
- name: Install shellcheck
run: |
sudo apt-get update -qq && sudo apt-get install -y -qq shellcheck >/dev/null 2>&1
apt-get update -qq && apt-get install -y -qq shellcheck >/dev/null 2>&1
- name: Shellcheck scripts
run: |