diff --git a/.github/workflows/scans.yml b/.github/workflows/scans.yml index 7e5e882..bad4fa6 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 @@ -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 0000000..30cd8df --- /dev/null +++ b/Cargo_Outdated_Ignore @@ -0,0 +1 @@ +subprocess