chore(deps): update mise to v2026.8.14 (#520) #1908
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 | |
| on: | |
| push: | |
| branches: [main] # warms the Rust cache so PR branches get a cache hit | |
| pull_request: | |
| permissions: {} | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| fetch-depth: 0 # needed for merge-base used in lint:links | |
| - name: Setup mise | |
| uses: jdx/mise-action@c2a87611a18de5b3828c5652fe268e992400cb5c # v4.3.0 | |
| with: | |
| version: v2026.8.14 | |
| sha256: 7cd12d6002d5b3c83a89cad79023712faf2a36f9e8b2ee2061dac5135b3de0ed | |
| # mise may activate an existing Rust toolchain without adding missing components. | |
| - name: Install Rust lint components | |
| run: rustup component add clippy rustfmt | |
| - name: Restore cache | |
| uses: Swatinem/rust-cache@6323deb102c322ba6fcbdcafc7e3dddab59af2b6 # v2.9.2 | |
| - name: Lint | |
| env: | |
| GITHUB_REPOSITORY: ${{ github.repository }} | |
| GITHUB_BASE_REF: ${{ github.base_ref }} | |
| GITHUB_HEAD_REF: ${{ github.head_ref }} | |
| PR_HEAD_REPO: ${{ github.event.pull_request.head.repo.full_name || github.repository }} | |
| GITHUB_TOKEN: ${{ github.token }} | |
| run: mise run lint |