Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,21 @@ on:
permissions:
contents: read
issues: write
checks: write

# cargo-audit is a standalone tool, not part of this crate's build, so it is
# built with the latest stable toolchain rather than the pinned channel in
# rust-toolchain.toml. RUSTUP_TOOLCHAIN overrides that file for this job.
env:
RUSTUP_TOOLCHAIN: stable

jobs:
audit:
name: Dependency Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: rustsec/audit-check@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
Loading
Loading