Add advisory for astral-tokio-tar (CVE-2025-62518) #4075
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: Validate | |
| on: | |
| pull_request: {} | |
| push: | |
| branches: main | |
| jobs: | |
| lint: | |
| name: Lint advisories | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Cache cargo bin | |
| id: admin-cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.cargo/bin | |
| key: rustsec-admin-c7f56c474e01619b78b9c39bdb626d982f3bee90 | |
| - name: Install rustsec-admin | |
| if: steps.admin-cache.outputs.cache-hit != 'true' | |
| run: cargo install --git https://github.com/rustsec/rustsec rustsec-admin --rev c7f56c474e01619b78b9c39bdb626d982f3bee90 | |
| - name: Lint advisories | |
| run: rustsec-admin lint --skip-namecheck rustdecimal,vec-const |