github-actions (master): bump actions/checkout from 5 to 6 in the production-dependencies group #52
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: "Lint GitHub Actions workflows" | |
| on: | |
| pull_request: | |
| paths: | |
| - ".github/**" | |
| permissions: | |
| contents: read | |
| jobs: | |
| actionlint: | |
| uses: "mimmi20/ci/.github/workflows/lint-actions.yml@8.3" | |
| with: | |
| skip-nasm-install: false | |
| skip-libimagequant-install: false | |
| # This is a meta job to avoid to have to constantly change the protection rules | |
| # whenever we touch the matrix. | |
| lint-status: | |
| name: "Lint Status" | |
| runs-on: "ubuntu-latest" | |
| if: always() | |
| needs: "actionlint" | |
| steps: | |
| - name: Failing run | |
| if: ${{ contains(needs.*.result, 'failure') }} | |
| run: exit 1 | |
| - name: Successful run | |
| if: ${{ !(contains(needs.*.result, 'failure')) }} | |
| run: exit 0 |