Skip to content

dependencies

dependencies #3809

Workflow file for this run

name: dependencies
on:
push:
branches:
- main
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
- ".github/config/cargo-deny.toml"
- ".github/workflows/dependencies.yml"
pull_request:
branches:
- main
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
- ".github/config/cargo-deny.toml"
- ".github/workflows/dependencies.yml"
schedule:
# run every morning at 10am Pacific Time
- cron: "0 17 * * *"
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: rustsec/audit-check@v1.4.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
deny:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: "Remove rust-toolchain"
run: rm rust-toolchain
- uses: EmbarkStudios/cargo-deny-action@v1
with:
command: check --config .github/config/cargo-deny.toml