chore(deps): update rust crate gray_matter to 0.3.0 #909
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: Clippy | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'Cargo.toml' | |
| - 'Cargo.lock' | |
| - '**.rs' | |
| pull_request: | |
| paths: | |
| - 'Cargo.toml' | |
| - 'Cargo.lock' | |
| - '**.rs' | |
| workflow_dispatch: | |
| jobs: | |
| clippy: | |
| name: Run scan | |
| runs-on: ubuntu-latest | |
| permissions: | |
| security-events: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Install Nix | |
| uses: DeterminateSystems/nix-installer-action@v22 | |
| - name: Generate sarif report | |
| id: clippy-run | |
| run: | | |
| nix build --print-build-logs .#clippy-report | |
| [ -L result ] || exit 1 | |
| echo "sarif-file=$(readlink -f result)" >> "$GITHUB_OUTPUT" | |
| - name: Upload results | |
| uses: github/codeql-action/upload-sarif@v4 | |
| with: | |
| sarif_file: ${{ steps.clippy-run.outputs.sarif-file }} | |
| wait-for-processing: true |