Skip to content

chore(deps): update actions/checkout action to v6.0.1 #1031

chore(deps): update actions/checkout action to v6.0.1

chore(deps): update actions/checkout action to v6.0.1 #1031

Workflow file for this run

name: Shellcheck
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
- name: Install shellcheck
run: sudo apt update && sudo apt install --assume-yes shellcheck
- name: Run shellcheck
run: find . -name \*.sh | xargs shellcheck --severity=warning