Skip to content

Bump jiff from 0.2.19 to 0.2.20 in the minor group #5264

Bump jiff from 0.2.19 to 0.2.20 in the minor group

Bump jiff from 0.2.19 to 0.2.20 in the minor group #5264

Workflow file for this run

name: Security audit
on:
schedule:
- cron: "0 1 * * *"
push:
branches:
- master
pull_request:
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
- ".cargo/audit.toml"
jobs:
security_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Cache cargo registry, index and build directory
uses: actions/cache@v5
with:
path: |
~/.cargo/bin/cargo-audit
key: cargo-audit-${{ runner.os }}
- uses: rustsec/audit-check@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}