From dcd684f044bb39d942592ddd69c93f2220d2b42a Mon Sep 17 00:00:00 2001 From: Jonatan Waern Date: Mon, 12 Jan 2026 11:32:15 +0100 Subject: [PATCH 1/2] Unlock cargo deny version Previously thought runner needed rust 1.85, but seems to work fine anyway Signed-off-by: Jonatan Waern --- .github/workflows/scans.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scans.yml b/.github/workflows/scans.yml index 7e5e882c..2fec21ac 100644 --- a/.github/workflows/scans.yml +++ b/.github/workflows/scans.yml @@ -32,7 +32,7 @@ jobs: shell: bash if: ${{ success() || failure() }} run: | - cargo install cargo-deny@^0.17 + cargo install cargo-deny cargo deny --version set -o pipefail cargo deny check 2>&1 | tee -a ${{ inputs.log-dir }}/deny-log From cb91011264bd2f703e4b50e92545408164a07d7e Mon Sep 17 00:00:00 2001 From: Jonatan Waern Date: Mon, 12 Jan 2026 11:49:54 +0100 Subject: [PATCH 2/2] Add ignored creates list for outdated Signed-off-by: Jonatan Waern --- .github/workflows/scans.yml | 2 +- Cargo_Outdated_Ignore | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 Cargo_Outdated_Ignore diff --git a/.github/workflows/scans.yml b/.github/workflows/scans.yml index 2fec21ac..bad4fa67 100644 --- a/.github/workflows/scans.yml +++ b/.github/workflows/scans.yml @@ -44,7 +44,7 @@ jobs: cargo install --locked cargo-outdated cargo outdated --version set -o pipefail - cargo outdated --exit-code 1 2>&1 | tee -a ${{ inputs.log-dir }}/outdated-log + cargo outdated --ignore $(paste -sd "," Cargo_Outdated_Ignore) --exit-code 1 2>&1 | tee -a ${{ inputs.log-dir }}/outdated-log - name: Upload logs if: ${{ success() || failure() }} uses: actions/upload-artifact@v4 diff --git a/Cargo_Outdated_Ignore b/Cargo_Outdated_Ignore new file mode 100644 index 00000000..30cd8df3 --- /dev/null +++ b/Cargo_Outdated_Ignore @@ -0,0 +1 @@ +subprocess