diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml new file mode 100644 index 00000000..508085f6 --- /dev/null +++ b/.github/workflows/security.yml @@ -0,0 +1,14 @@ +name: Security +on: + schedule: + - cron: '0 0 * * 0' +jobs: + audit: + name: Dependencies Security Audit + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: ./.github/actions/arrayfire + - uses: actions-rs/audit-check@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }}