From 6fc5c59621668cc758daa6f9996c88f45bba95df Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 2 Aug 2024 13:30:30 +0000 Subject: [PATCH 1/2] chore(deps): bump EmbarkStudios/cargo-deny-action from 1 to 2 Bumps [EmbarkStudios/cargo-deny-action](https://github.com/embarkstudios/cargo-deny-action) from 1 to 2. - [Release notes](https://github.com/embarkstudios/cargo-deny-action/releases) - [Commits](https://github.com/embarkstudios/cargo-deny-action/compare/v1...v2) --- updated-dependencies: - dependency-name: EmbarkStudios/cargo-deny-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deny.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deny.yml b/.github/workflows/deny.yml index e87e312..23f921b 100644 --- a/.github/workflows/deny.yml +++ b/.github/workflows/deny.yml @@ -10,7 +10,7 @@ jobs: continue-on-error: true steps: - uses: actions/checkout@v4 - - uses: EmbarkStudios/cargo-deny-action@v1 + - uses: EmbarkStudios/cargo-deny-action@v2 with: command: check advisories @@ -21,7 +21,7 @@ jobs: - uses: actions/checkout@v4 - name: Ignore dev-dependencies run: sed -i 's/\[dev-dependencies\]/[workaround-avoid-dev-deps]/g' Cargo.toml - - uses: EmbarkStudios/cargo-deny-action@v1 + - uses: EmbarkStudios/cargo-deny-action@v2 with: command: check bans licenses sources From c7343e47760223ff20d3227b5853a2e6bd8b6cea Mon Sep 17 00:00:00 2001 From: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> Date: Sat, 3 Aug 2024 09:18:24 +1000 Subject: [PATCH 2/2] Fix deny.toml: Remove deprecated keys --- deny.toml | 2 -- 1 file changed, 2 deletions(-) diff --git a/deny.toml b/deny.toml index 6165c03..e192552 100644 --- a/deny.toml +++ b/deny.toml @@ -3,14 +3,12 @@ ignore = [ ] [licenses] -unlicensed = "deny" allow = [ "MIT", "Apache-2.0", "BSD-3-Clause", "Unicode-DFS-2016", ] -default = "deny" [bans] multiple-versions = "warn"