Bump actions/deploy-pages from 4 to 5 in the github-actions group across 1 directory #5
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 | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - '.github/workflows/*.yml' | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - '.github/workflows/*.yml' | |
| permissions: | |
| contents: read | |
| jobs: | |
| actions: | |
| name: Check GitHub Actions | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Setup matchers | |
| run: echo "::add-matcher::.github/matchers/actionlint.json" | |
| shell: bash | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| - name: Run actionlint | |
| uses: rhysd/actionlint@393031adb9afb225ee52ae2ccd7a5af5525e03e8 # v1.7.11 | |
| - name: Run zizmor | |
| uses: zizmorcore/zizmor-action@71321a20a9ded102f6e9ce5718a2fcec2c4f70d8 # v0.5.2 | |
| with: | |
| advanced-security: false |