• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "name": "Security audit",
3  "on": {
4    "schedule": [
5      {
6        "cron": "0 0 * * *"
7      }
8    ]
9  },
10  "jobs": {
11    "audit": {
12      "runs-on": "ubuntu-latest",
13      "steps": [
14        {
15          "uses": "actions/checkout@v1"
16        },
17        {
18          "uses": "actions-rs/audit-check@v1",
19          "with": {
20            "token": "${{ secrets.GITHUB_TOKEN }}"
21          }
22        }
23      ]
24    }
25  }
26}
27