chore(deps): bump mistune from 3.2.1 to 3.3.0 #137
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: actionlint | |
| # Lints the GitHub Actions workflow files themselves. actionlint also runs | |
| # shellcheck on every `run:` block, which catches shell bugs in workflows (for | |
| # example, the `set -o pipefail` that fails under the container's default dash | |
| # shell, and unquoted variables). Pinned to the official image by version. | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| actionlint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: Run actionlint | |
| run: docker run --rm -v "${{ github.workspace }}":/repo:ro --workdir /repo rhysd/actionlint:1.7.12 |