mirror of
https://github.com/gitui-org/gitui
synced 2026-05-24 01:18:21 +00:00
enable but ignore certain audits
This commit is contained in:
parent
4d05dea4a6
commit
3bc4feb2ac
2 changed files with 15 additions and 12 deletions
6
.cargo/audit.toml
Normal file
6
.cargo/audit.toml
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
[advisories]
|
||||||
|
ignore = [
|
||||||
|
# see https://github.com/extrawurst/gitui/issues/951
|
||||||
|
"RUSTSEC-2020-0159",
|
||||||
|
# see https://github.com/extrawurst/gitui/issues/950
|
||||||
|
"RUSTSEC-2020-0071"]
|
||||||
21
.github/workflows/ci.yml
vendored
21
.github/workflows/ci.yml
vendored
|
|
@ -142,18 +142,15 @@ jobs:
|
||||||
components: rustfmt
|
components: rustfmt
|
||||||
- run: cargo fmt -- --check
|
- run: cargo fmt -- --check
|
||||||
|
|
||||||
# TODO: enable again once we have these two fixed:
|
|
||||||
# https://github.com/extrawurst/gitui/issues/950
|
sec:
|
||||||
# https://github.com/extrawurst/gitui/issues/951
|
name: Security audit
|
||||||
#
|
runs-on: ubuntu-latest
|
||||||
# sec:
|
steps:
|
||||||
# name: Security audit
|
- uses: actions/checkout@v2
|
||||||
# runs-on: ubuntu-latest
|
- uses: actions-rs/audit-check@v1
|
||||||
# steps:
|
with:
|
||||||
# - uses: actions/checkout@v2
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
# - uses: actions-rs/audit-check@v1
|
|
||||||
# with:
|
|
||||||
# token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
log-test:
|
log-test:
|
||||||
name: Changelog Test
|
name: Changelog Test
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue