From 87016dd272328362d70e76c14c0e00f071659392 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Mon, 6 Apr 2026 09:39:00 -0700 Subject: [PATCH] Update EmbarkStudios/cargo-deny-action to v2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump the cargo-deny-action GitHub Action from v1 to v2. In recent times the audit workflow failed due to what looked like outdated Rust toolchain usage and the v2 action ships a more up-to-date version. While at it, split the command arguments into the dedicated `command-arguments` input instead of stuffing everything into `command`, which seems to be the intended usage. Signed-off-by: Daniel Müller --- .github/workflows/audit.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index c90635db..2c57d038 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -16,6 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - - uses: EmbarkStudios/cargo-deny-action@v1 + - uses: EmbarkStudios/cargo-deny-action@v2 with: - command: check ${{ matrix.checks }} + command: check + command-arguments: ${{ matrix.checks }}