Skip to content

bitreq: Evict dead entries from async connection pool #18

bitreq: Evict dead entries from async connection pool

bitreq: Evict dead entries from async connection pool #18

Workflow file for this run

on:
push:
branches:
- master
pull_request:
schedule:
- cron: '0 0 * * *'
name: Audit
jobs:
audit:
name: Security audit - ${{ matrix.lockfile }}
runs-on: ubuntu-latest
permissions:
issues: write
checks: write
strategy:
fail-fast: false
matrix:
lockfile: [Cargo.lock, Cargo-minimal.lock, Cargo-recent.lock]
steps:
- uses: actions/checkout@v4
- name: Generate fresh Cargo.lock
if: ${{ matrix.lockfile == 'Cargo.lock' }}
run: cargo generate-lockfile
- name: Use ${{ matrix.lockfile }}
if: ${{ matrix.lockfile != 'Cargo.lock' }}
run: cp ${{ matrix.lockfile }} Cargo.lock
- uses: rustsec/audit-check@v2.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}