Skip to content

Commit

Permalink
Add cargo audit workflow (#43)
Browse files Browse the repository at this point in the history
Signed-off-by: Magnus Kulke <[email protected]>
  • Loading branch information
mkulke authored Dec 20, 2023
1 parent 81cacc5 commit 93e0217
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Security audit
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'

jobs:
az-cvm-vtpm:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

# https://github.com/actions/checkout/issues/1430
- name: Move az-cvm-vtpm/* to root
run: mv az-cvm-vtpm/* .

- uses: rustsec/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 93e0217

Please sign in to comment.