Bump actions/checkout to v6.0.2 #146
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
| # Copyright (c) 2021-2026 Koji Hasegawa. | |
| # This software is released under the MIT License. | |
| name: Lint workflow files | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - .github/workflows/** | |
| pull_request: | |
| types: [ opened, synchronize, reopened ] # Same as default | |
| paths: | |
| - .github/workflows/** | |
| permissions: {} | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| actionlint: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| actions: read | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| with: | |
| submodules: false | |
| lfs: false | |
| - uses: reviewdog/action-actionlint@6fb7acc99f4a1008869fa8a0f09cfca740837d9d # v1 | |
| with: | |
| reporter: github-pr-review | |
| fail_level: error |