chore(deps): bump rand from 0.8.5 to 0.9.0 #245
Workflow file for this run
This file contains 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: | |
push: | |
paths: | |
- '**/Cargo.toml' | |
- '**/Cargo.lock' | |
permissions: | |
contents: read | |
jobs: | |
security_audit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install cargo-audit | |
uses: actions-rs/[email protected] | |
with: | |
crate: cargo-audit | |
version: latest | |
- name: Audit | |
# TEMP: Ignore the time/chrono segfault CVEs since there are no known | |
# good workarounds, and we want logs etc to be in local time. | |
run: cargo audit --ignore RUSTSEC-2020-0159 --ignore RUSTSEC-2020-0071 |