Skip to content

Commit

Permalink
chore: Install Rust toolchain for audit job
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Oct 31, 2021
1 parent 7a96353 commit 7a04e5c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Security Audit

on:
schedule:
- cron: '0 0 * * 0'
- cron: "0 0 * * 0"

jobs:
audit:
Expand All @@ -11,6 +11,12 @@ jobs:
steps:
- name: Checkout the repository
uses: actions/checkout@master
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: minimal
override: true
- name: Run cargo-audit
uses: actions-rs/audit-check@v1
with:
Expand Down

0 comments on commit 7a04e5c

Please sign in to comment.