chore(deps): update quay.io/konflux-ci/konflux-ui docker digest to 148bdca #36
This file contains 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
name: Differential ShellCheck | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: main | |
merge_group: | |
types: [checks_requested] | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
permissions: | |
# required for all workflows | |
security-events: write | |
# only required for workflows in private repositories | |
actions: read | |
contents: read | |
steps: | |
- name: Repository checkout | |
uses: actions/checkout@v4 | |
with: | |
# Differential ShellCheck requires full git history | |
fetch-depth: 0 | |
- id: DiffShellCheck | |
name: Differential ShellCheck | |
uses: redhat-plumbers-in-action/differential-shellcheck@v5 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |