diff --git a/.github/workflows/rust_security.yml b/.github/workflows/rust_security.yml new file mode 100644 index 00000000..59f1ff06 --- /dev/null +++ b/.github/workflows/rust_security.yml @@ -0,0 +1,11 @@ +on: + schedule: + - cron: '0 3 * * 1' +jobs: + audit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions-rs/audit-check@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file