ci: update shellcheck installation method in CI config
Some checks failed
Bash Scripts CI/CD / lint (pull_request) Failing after 4s
Some checks failed
Bash Scripts CI/CD / lint (pull_request) Failing after 4s
This commit is contained in:
parent
77e03b9c1b
commit
22fc4f37ee
1 changed files with 4 additions and 3 deletions
|
@ -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: |
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue