chore(deps): update github/codeql-action digest to 5f8171a #10205
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
| name: Linters | |
| on: [pull_request] | |
| jobs: | |
| linters: | |
| name: reviewdog | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - name: Trust my checkout | |
| run: git config --global --add safe.directory "${GITHUB_WORKSPACE}" | |
| - name: Install devbox | |
| uses: jetify-com/devbox-install-action@734088efddca47cf44ff8a09289c6d0e51b73218 # v0.12.0 | |
| with: | |
| enable-cache: 'true' | |
| - name: Make devbox shellenv available | |
| run: | | |
| eval "$(devbox shellenv)" | |
| printenv >> "$GITHUB_ENV" | |
| - name: Run Go linter | |
| run: | | |
| make lint-go | |
| - name: shellcheck | |
| uses: reviewdog/action-shellcheck@6e0e63d1750d02d761b3df0f2c5ba9f9ac4a9ed7 # v1 | |
| with: | |
| reporter: github-pr-review | |
| - name: actionlint | |
| uses: reviewdog/action-actionlint@db58217885f9a6570da9c71be4e40ec33fe44a1f # v1 | |
| with: | |
| reporter: github-pr-review | |
| - name: Run Ruby linter | |
| run: | | |
| make lint-ruby | |
| - name: alex | |
| uses: reviewdog/action-alex@986cf7dd82e702f82b4173deaa793a849f5b719d # v1 | |
| with: | |
| reporter: github-pr-review | |
| - name: markdownlint | |
| uses: reviewdog/action-markdownlint@f901468edf9a3634dd39b35ba26cad0aad1a0bfd # v0 | |
| with: | |
| reporter: github-pr-review |