Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/scans.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions Cargo_Outdated_Ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
subprocess
Loading