mirror of
https://github.com/gopher64/gopher64.git
synced 2026-09-24 05:16:37 +02:00
19 lines
368 B
YAML
19 lines
368 B
YAML
name: Security audit
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
jobs:
|
|
audit:
|
|
permissions:
|
|
issues: write
|
|
checks: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
- uses: rustsec/audit-check@v2
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|