Skip to content

Bump url from 2.5.6 to 2.5.7 in /rust #981

Bump url from 2.5.6 to 2.5.7 in /rust

Bump url from 2.5.6 to 2.5.7 in /rust #981

Workflow file for this run

name: Rust Audit
on:
workflow_dispatch: # Allow manual running to refresh/check cache
schedule:
- cron: '0 2 * * *'
pull_request:
paths:
- 'rust/**/Cargo.toml'
- 'rust/**/Cargo.lock'
- '.github/workflows/rust-audit.yaml'
env:
SCCACHE_GHA_ENABLED: "true"
SSCACHE_CACHE_SIZE: "2G"
RUSTC_WRAPPER: "sccache"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.88
- uses: mozilla-actions/sccache-action@v0.0.9
- name: Install cargo audit
run: cargo install cargo-audit
- name: Audit
working-directory: ./rust
run: cargo audit