python-launcher 1.0.0

The Python launcher for Unix
Documentation
name: Security check
on:
  schedule:
    - cron: "0 0 * * *"
jobs:
  audit:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2

      - uses: actions/cache@v2
        with:
          path: |
            ~/.cargo/registry
            ~/.cargo/git
            target
          key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}

      # actions-rs/audit-check isn't updated fast enough for our use
      # of stable.
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
          override: true

      - name: "Install cargo-audit"
        run: cargo install cargo-audit

      - name: "Audit"
        run: cargo audit