From 6695ab0da70d9714727ecbf39106b6aa8fc31731 Mon Sep 17 00:00:00 2001 From: Aydin Mercan Date: Sun, 27 Feb 2022 14:37:51 +0300 Subject: [PATCH] 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. --- .github/workflows/audit.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index b98d42f..12201a4 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -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 }}