Skip to content

build(deps): bump redhat-plumbers-in-action/differential-shellcheck #92

build(deps): bump redhat-plumbers-in-action/differential-shellcheck

build(deps): bump redhat-plumbers-in-action/differential-shellcheck #92

Workflow file for this run

---
name: Shell CI
on:
push:
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
lint:
name: ShellCheck
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- id: ShellCheck
name: Differential ShellCheck
uses: redhat-plumbers-in-action/differential-shellcheck@v5
with:
severity: warning
token: ${{ secrets.GITHUB_TOKEN }}
- if: ${{ always() }}
name: Upload artifact with ShellCheck defects in SARIF format
uses: actions/upload-artifact@v3
with:
name: Differential ShellCheck SARIF
path: ${{ steps.ShellCheck.outputs.sarif }}
...