Daily Deny Check #264
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: Daily Deny Check | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
deny: | |
name: Run cargo deny | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac | |
- name: Advisory Cache | |
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 | |
with: | |
path: ~/.cargo/advisory-db | |
key: rust-advisory-db | |
- name: Install cargo deny | |
run: | | |
rustup toolchain install nightly | |
cargo +nightly install --locked cargo-deny | |
- name: Run cargo deny | |
run: cargo deny -L error --all-features check |