Skip to content

chore(deps): bump rand from 0.8.5 to 0.9.0 #245

chore(deps): bump rand from 0.8.5 to 0.9.0

chore(deps): bump rand from 0.8.5 to 0.9.0 #245

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