mirror of
https://github.com/cve-search/cpe-guesser.git
synced 2024-11-15 03:18:28 +00:00
01621fbbed
Node.js 16 actions are deprecated. actions/checkout@v4 uses Node.js 20
22 lines
416 B
YAML
22 lines
416 B
YAML
name: ShellCheck
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
shellcheck:
|
|
name: ShellCheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Run ShellCheck for shell scripts
|
|
uses: ludeeus/action-shellcheck@master
|
|
with:
|
|
severity: style
|
|
scandir: .
|
|
format: gcc
|
|
version: stable
|