build(deps): bump systemd/mkosi from 070528fec478fc93af7ec057a5d2fd0045123c99 to cfdcfca4a526f855d718fcf6cb1efcf863c88baf #468
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# https://github.com/redhat-plumbers-in-action/differential-shellcheck#readme | |
name: Differential ShellCheck | |
on: | |
push: | |
branches: | |
- main | |
- rhel-9.*.0 | |
pull_request: | |
branches: | |
- main | |
- rhel-9.*.0 | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
name: Differential ShellCheck | |
runs-on: ubuntu-latest | |
permissions: | |
security-events: write | |
steps: | |
- name: Repository checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Differential ShellCheck | |
uses: redhat-plumbers-in-action/differential-shellcheck@v4 | |
with: | |
# exclude all `.in` files because they may contain unsupported syntax, and they have to be preprocessed first | |
exclude-path: '**/*.in' | |
token: ${{ secrets.GITHUB_TOKEN }} |