diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/audit.yaml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/audit.yaml b/.github/workflows/audit.yaml index 18a1075..9b8fc7f 100644 --- a/.github/workflows/audit.yaml +++ b/.github/workflows/audit.yaml @@ -2,11 +2,13 @@ name: Security audit on: schedule: - cron: '0 0 * * *' + workflow_dispatch: jobs: security_audit: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 + - run: cargo generate-lockfile # create Cargo.lock - uses: rustsec/audit-check@v2.0.0 with: token: ${{ secrets.GITHUB_TOKEN }} |
