Merge pull request #2 from istic/dependabot/github_actions/actions/ca… #5
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: "[Lint] GitHub Actions" | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - ".github/workflows/**" | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - ".github/workflows/**" | |
| jobs: | |
| actionlint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Lint GitHub Actions workflows | |
| uses: rhysd/actionlint@v1.7.12 | |
| with: | |
| # fromJson() matrix values have no statically-known type; suppress false positive | |
| args: -ignore 'property .php-version. is not defined in object type' |