deps(deps): bump config from 0.14.1 to 0.15.11 #3
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Security Audit | |
on: | |
schedule: | |
- cron: '0 0 * * 0' # Weekly at midnight on Sunday | |
push: | |
paths: | |
- '**/Cargo.toml' | |
- '**/Cargo.lock' | |
pull_request: | |
paths: | |
- '**/Cargo.toml' | |
- '**/Cargo.lock' | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
security-audit: | |
name: Security Audit | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install cargo-audit | |
run: cargo install cargo-audit | |
- name: Run security audit | |
run: cargo audit | |
outdated-dependencies: | |
name: Check for outdated dependencies | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install cargo-outdated | |
run: cargo install cargo-outdated | |
- name: Check for outdated dependencies | |
run: cargo outdated --exit-code 1 |