Update GitHub actions to work in Taskwarrior

This moves the workspace Cargo.toml to the root of the repository, so
that the "actions-rs/cargo" action can find it.
This commit is contained in:
Dustin J. Mitchell
2022-05-08 19:52:35 +00:00
parent 1df54125ea
commit 9f5994bfd1
9 changed files with 19 additions and 19 deletions

19
.github/workflows/security.yml vendored Normal file
View File

@@ -0,0 +1,19 @@
name: security
on:
schedule:
- cron: '0 0 * * *'
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
jobs:
audit:
runs-on: ubuntu-latest
name: "Audit Dependencies"
steps:
- uses: actions/checkout@v2
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}