From ba1541456891f89ad580c7702a3843a74624e15d Mon Sep 17 00:00:00 2001 From: Boyu Yang Date: Wed, 13 Oct 2021 17:21:42 +0800 Subject: [PATCH] ci: add a scheduled audit workflow --- .github/workflows/scheduled_audit.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/scheduled_audit.yaml diff --git a/.github/workflows/scheduled_audit.yaml b/.github/workflows/scheduled_audit.yaml new file mode 100644 index 0000000000..a19f1cdbf7 --- /dev/null +++ b/.github/workflows/scheduled_audit.yaml @@ -0,0 +1,12 @@ +name: Security Audit +on: + schedule: + - cron: '0 0 * * *' +jobs: + audit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: yangby-cryptape/cargo-audit-check-action@customized-for-ckb + with: + token: ${{ secrets.GITHUB_TOKEN }}