Skip to content
Merged
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,14 @@ jobs:
name: cargo-deny
runs-on: ubuntu-latest
timeout-minutes: 10
# The cargo-deny-action image ships a pre-installed `stable` toolchain,
# but its `rustup show` step honors `rust-toolchain.toml`'s override
# before that toolchain is registered, emitting an alarming (but
# non-fatal) "override toolchain ... is not installed" stack trace.
# Pinning RUSTUP_TOOLCHAIN bypasses the override probe so the log is
# clean. See issue #81.
env:
RUSTUP_TOOLCHAIN: stable
steps:
- uses: actions/checkout@v7
- uses: EmbarkStudios/cargo-deny-action@v2
Expand Down
Loading