Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Security audit

Security audit #1001

Workflow file for this run

name: Security audit
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- name: Install toolchain stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
default: true
- uses: actions-rs/audit-check@v1.2.0
with:
token: ${{ secrets.GITHUB_TOKEN }}