chore(deps): update rust crate clap to v4.5.56 (#1758) #8409
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: Run Checks | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: {} | |
| merge_group: | |
| permissions: {} | |
| jobs: | |
| checks: | |
| name: Run Checks | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - uses: actions-rust-lang/setup-rust-toolchain@1780873c7b576612439a134613cc4cc74ce5538c # v1.15.2 | |
| - name: Install nightly toolchain (for formatting) | |
| if: matrix.os == 'ubuntu-latest' | |
| run: rustup toolchain install nightly --component rustfmt | |
| - uses: jdx/mise-action@6d1e696aa24c1aa1bcc1adea0212707c71ab78a8 # v3.6.1 | |
| - uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 | |
| if: matrix.os == 'ubuntu-latest' | |
| with: | |
| path: docs/node_modules | |
| key: ${{ runner.os }}-docs-deps-${{ hashFiles('docs/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-docs-deps- | |
| - name: Install docs dependencies | |
| if: matrix.os == 'ubuntu-latest' | |
| run: mise run install-docs-dependencies | |
| - name: Run CI | |
| if: matrix.os == 'ubuntu-latest' | |
| run: mise run ci | |
| - name: Run tests only | |
| if: matrix.os == 'windows-latest' | |
| run: mise run test | |
| vale: | |
| name: Vale | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - run: npm install -g mdx2vast # Adds MDX support for Vale | |
| - uses: errata-ai/vale-action@dcded780f1ff68e2558e802a165a484a4a3e2fb8 | |
| with: | |
| files: '["docs", "README.md", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md"]' |