Skip to content

build(deps): bump the actions group across 1 directory with 4 updates… #4848

build(deps): bump the actions group across 1 directory with 4 updates…

build(deps): bump the actions group across 1 directory with 4 updates… #4848

Workflow file for this run

name: "Continuous Build (shellcheck)"
on: [push, pull_request]
permissions:
contents: read
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install shell check
run: sudo apt update && sudo apt install --assume-yes shellcheck
- name: Run shellcheck
run: >-
find . -type f |
grep -v '.git' |
xargs -n 30 file |
grep -i shell |
awk -F':' '{print $1}' |
xargs shellcheck