Skip to content

chore(deps): Bump docker/login-action from 3 to 4 #51

chore(deps): Bump docker/login-action from 3 to 4

chore(deps): Bump docker/login-action from 3 to 4 #51

Workflow file for this run

name: Shellcheck
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
if compgen -G "**/*.sh" > /dev/null; then
sudo apt-get update && sudo apt-get install -y shellcheck
find . -name "*.sh" -print0 | xargs -0 shellcheck
else
echo "No shell scripts; skipping"
fi