Skip to content

chore(deps): update actions/upload-artifact action to v6 (#631) #1540

chore(deps): update actions/upload-artifact action to v6 (#631)

chore(deps): update actions/upload-artifact action to v6 (#631) #1540

---
name: check_shell_scripts
'on':
workflow_dispatch:
push:
branches:
- master
pull_request:
permissions:
contents: read
jobs:
run_shellcheck:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Install shellcheck
run: |
sudo apt-get install shellcheck
- name: display shellcheck version
run: |
shellcheck --version
- name: run check_shell_scripts
run: |
./check_all_shell_scripts.sh
...