Skip to content

chore(deps): use bollard 0.19.4 (#870) #20

chore(deps): use bollard 0.19.4 (#870)

chore(deps): use bollard 0.19.4 (#870) #20

Workflow file for this run

name: Security audit
on:
workflow_dispatch:
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
jobs:
security_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Generate Cargo.lock if doesn't exist
run: |
if [ ! -f Cargo.lock ]; then
cargo generate-lockfile
fi
- uses: rustsec/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}