Bump reviewdog/action-actionlint from a1b7ce56be870acfe94b83ce5f6da076aecc6d8c to abd537417cf4991e1ba8e21a67b1119f4f53b8e0 #78
Workflow file for this run
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: Shell | |
on: | |
pull_request: | |
paths: | |
- "**.sh" | |
- ".github/workflows/*" | |
jobs: | |
lint-format: | |
name: Lint & Format | |
# These permissions are needed to: | |
# - Checkout the Git repo (`contents: read`) | |
# - Post a comments on PRs: https://github.com/luizm/action-sh-checker#secrets | |
permissions: | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Extract workflow shell scripts | |
id: extract | |
uses: beacon-biosignals/gha-extract-shell-scripts@v1 | |
- uses: luizm/action-sh-checker@c6edb3de93e904488b413636d96c6a56e3ad671a # v0.8.0 | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
with: | |
sh_checker_comment: true | |
# Support investigating linting/formatting errors | |
- uses: actions/upload-artifact@v4 | |
if: ${{ failure() }} | |
with: | |
name: workflow-scripts | |
path: ${{ steps.extract.outputs.output-dir }} |