Bump php from 8.0.30-cli-alpine to 8.4.8-cli-alpine in /docker #653
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Shellcheck | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
shellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install shellcheck | |
run: sudo apt update && sudo apt install --assume-yes shellcheck | |
- name: Run shellcheck | |
run: find . -name \*.sh | xargs shellcheck --severity=warning |