Bump @activeadmin/activeadmin from 4.0.0-beta9 to 4.0.0-beta15 and @rails/ujs from 7.1.2 to 7.1.400 #74
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: GitHub Actions Lint | |
on: | |
pull_request: | |
jobs: | |
github_actions_lint: | |
name: Run actionlint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: tj-actions/changed-files@v45 | |
id: changed-files | |
with: | |
files: | | |
.github/workflows/*.yaml | |
.github/workflows/*.yml | |
- uses: reviewdog/action-actionlint@v1 | |
if: steps.changed-files.outputs.any_changed == 'true' | |
with: | |
fail_level: any | |
filter_mode: nofilter # added (default), diff_context, file, nofilter | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
reporter: github-pr-check |