ci/github: use explicitly latest stable toolchain

Since the action audit used has rust 1.58, it automatically fails with
strip. If this doesn't work I'll disable the audit cron to stop auto
notification.
Aydin Mercan 2022-02-27 14:37:51 +03:00
parent 8865027ec3
commit 6695ab0da7
No known key found for this signature in database
1 changed files with 6 additions and 0 deletions

View File

@ -14,9 +14,15 @@ env:
jobs:
cargo_audit:
name: RUSTSEC Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}