fix: merge skip_one API and fix utf8_lossy surrogate backtrack #818
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: "Security Audit" | |
| on: | |
| pull_request: | |
| push: | |
| paths: | |
| - "**/Cargo.toml" | |
| - "**/Cargo.lock" | |
| jobs: | |
| security-audit: | |
| permissions: | |
| contents: read | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| # Use cargo-audit 0.22+ for CVSS 4.0 support in advisory DB (avoids parse error) | |
| - name: Install cargo-audit | |
| run: cargo install cargo-audit --version "0.22.1" --locked | |
| - name: Audit Rust Dependencies | |
| run: cargo audit |