/
githubmirror
/
initscripts
Обзор
Документация
Войти
/
githubmirror
/
initscripts
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/differential-shellcheck.yml
37 строк
793 B
dependabot[bot]
build(deps): bump actions/checkout from 6 to 7
07 июл 2026, 15:12
07 июл 2026, 15:12
1778f14
Код
Авторство
О чём код?
--- name: Differential ShellCheck on: push: branches: [ main, rhel*-branch ] pull_request: branches: [ main, rhel*-branch ] jobs: lint: runs-on: ubuntu-latest permissions: security-events: write steps: - name: Checkout uses: actions/checkout@v7 with: fetch-depth: 0 - id: ShellCheck name: Differential ShellCheck uses: redhat-plumbers-in-action/differential-shellcheck@v5 with: token: ${{ secrets.GITHUB_TOKEN }} - if: ${{ always() }} name: Upload artifact with ShellCheck defects in SARIF format uses: actions/upload-artifact@v7 with: name: Differential ShellCheck SARIF path: ${{ steps.ShellCheck.outputs.sarif }} ...