Security Audit #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run cargo audit once every month and create issues for vulnerabilities found | |
name: Security Audit | |
on: | |
schedule: | |
# Run once every month (first of the month at midnight) | |
- cron: '0 0 1 * *' | |
jobs: | |
audit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Run cargo audit | |
uses: rustsec/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
permissions: | |
# to create issues | |
issues: write | |
# to create check | |
checks: write |