ci: update shellcheck installation method in CI config
Some checks failed
Bash Scripts CI/CD / lint (pull_request) Failing after 4s

This commit is contained in:
Jan K9f 2025-04-07 19:31:54 +02:00
parent 77e03b9c1b
commit 22fc4f37ee
Signed by: jank
GPG key ID: B9F475106B20F144

View file

@ -16,9 +16,10 @@ jobs:
- name: Install shellcheck
run: |
wget https://github.com/koalaman/shellcheck/releases/download/v0.9.4/shellcheck_0.9.4-1_amd64.deb
sudo apt-get install -y ./shellcheck_0.9.4-1_amd64.deb
rm shellcheck_0.9.4-1_amd64.deb
wget https://github.com/koalaman/shellcheck/releases/latest/download/shellcheck-latest.linux.x86_64.tar.xz
tar -xvf shellcheck-latest.linux.x86_64.tar.xz
sudo mv shellcheck /usr/local/bin
rm shellcheck-latest.linux.x86_64.tar.xz
- name: Lint bash scripts
run: |