Skip to content

chore(deps): bump lycheeverse/lychee-action from 2.5.0 to 2.6.0 in /.github/workflows #1227

chore(deps): bump lycheeverse/lychee-action from 2.5.0 to 2.6.0 in /.github/workflows

chore(deps): bump lycheeverse/lychee-action from 2.5.0 to 2.6.0 in /.github/workflows #1227

---
name: check_shell_scripts
'on':
workflow_dispatch:
push:
branches:
- master
pull_request:
jobs:
run_shellcheck:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- 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
...