Skip to content

Bump actions/checkout from 5 to 6 #30

Bump actions/checkout from 5 to 6

Bump actions/checkout from 5 to 6 #30

Workflow file for this run

---
name: shellcheck
on:
pull_request:
paths:
- .github/workflows/shellcheck.yml
- '**.sh'
push:
paths:
- .github/workflows/shellcheck.yml
- '**.sh'
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
-
uses: actions/checkout@v6
-
run: find . -type f -name "*.sh" -exec shellcheck {} +
...