git-shadow 0.0.3

Standalone shadow copies of git repos (or parts of them) in a working directory.
name: Audit (scheduled)

on:
  schedule:
    - cron: '0 7 * * *'  # 07:00 UTC daily

jobs:
  # Catch new advisories published against existing dependencies, even when no code has changed.
  audit:
    name: Audit
    runs-on: ubuntu-latest
    permissions:
      contents: read
      checks: write
    steps:
      - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5  # v4
        with:
          persist-credentials: false
      - uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8  # stable
      - uses: rustsec/audit-check@69366f33c96575abad1ee0dba8212993eecbe998  # v2.0.0
        with:
          token: ${{ secrets.GITHUB_TOKEN }}