Skip to content

Commit

Permalink
Merge pull request #25 from rursprung/remove-cargo-audit-ignore-of-ti…
Browse files Browse the repository at this point in the history
…me-in-CI

CI: audit: remove ignore of `time 0.1` vuln (no longer present)
  • Loading branch information
rursprung authored May 30, 2024
2 parents 87ece48 + 6d73fd1 commit 106f870
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,8 @@ jobs:
run: cargo check ${{ matrix.features }}
- name: test
run: cargo test ${{ matrix.features }}
- name: check formatting
run: cargo fmt --all -- --check
- name: audit
run: cargo audit --ignore RUSTSEC-2020-0071 # time 0.1, pulled in through chrono which however doesn't use the affected API. see https://github.com/chronotope/chrono/issues/602

clippy:
static-code-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -56,3 +52,7 @@ jobs:
with:
sarif_file: rust-clippy-results.sarif
wait-for-processing: true
- name: check formatting
run: cargo fmt --all -- --check
- name: audit
run: cargo audit

0 comments on commit 106f870

Please sign in to comment.