chore(deps): update dependency actionlint to v1.7.2 #7982
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: Linters | |
on: [pull_request] | |
jobs: | |
linters: | |
name: reviewdog | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Trust my checkout | |
run: git config --global --add safe.directory "${GITHUB_WORKSPACE}" | |
- name: Install devbox | |
uses: jetify-com/devbox-install-action@a03caf5813591bc882139eba6ae947930a83a427 # v0.11.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@v1 | |
with: | |
reporter: github-pr-review | |
- name: actionlint | |
uses: reviewdog/action-actionlint@v1 | |
with: | |
reporter: github-pr-review | |
- name: Run Ruby linter | |
run: | | |
make lint-ruby | |
- name: alex | |
uses: reviewdog/action-alex@v1 | |
with: | |
reporter: github-pr-review | |
- name: markdownlint | |
uses: reviewdog/action-markdownlint@v0 | |
with: | |
reporter: github-pr-review |