diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fd28a78..5afe5c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,8 +21,8 @@ jobs: - run: rustup default 1.91.1 - run: rustup component add clippy rustfmt - uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # ratchet:Swatinem/rust-cache@v2 - - uses: taiki-e/install-action@ae532dedd825648efd18d9c49c9a443d0398ca0a # ratchet:taiki-e/install-action@cargo-make - - uses: taiki-e/install-action@b98f5bfc2edc235d74c94cb39bd9d8cdd69dbbdf # ratchet:taiki-e/install-action@cargo-deny + - uses: taiki-e/install-action@cargo-make + - uses: taiki-e/install-action@cargo-deny - run: cargo make -p ci fmt-check - run: cargo make -p ci clippy - run: cargo make -p ci deny-check @@ -33,7 +33,7 @@ jobs: - uses: actions/checkout@v6 - run: rustup default 1.91.1 - uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # ratchet:Swatinem/rust-cache@v2 - - uses: taiki-e/install-action@ae532dedd825648efd18d9c49c9a443d0398ca0a # ratchet:taiki-e/install-action@cargo-make + - uses: taiki-e/install-action@cargo-make - run: cargo make -p ci test alls-green: diff --git a/deny.toml b/deny.toml index 5569c7b..3870f63 100644 --- a/deny.toml +++ b/deny.toml @@ -7,8 +7,16 @@ no-default-features = false feature-depth = 1 [advisories] +version = 2 +# The path where the advisory database is cloned/fetched into +db-path = "~/.cargo/advisory-db" +# The url(s) of the advisory databases to use +db-urls = ["https://github.com/rustsec/advisory-db"] +# The lint level for crates that have been yanked from their source registry +yanked = "warn" ignore = [] + [licenses] allow = ["Unicode-3.0", "Apache-2.0", "MIT"] confidence-threshold = 0.8