Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/audit'
Browse files Browse the repository at this point in the history
  • Loading branch information
baoyachi committed Mar 3, 2024
2 parents f0b289f + 7102cc2 commit bd6893f
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Security audit

on:
pull_request:
paths:
# Run if workflow changes
- '.github/workflows/audit.yml'
# Run on changed dependencies
- '**/Cargo.toml'
- '**/Cargo.lock'
# Run if the configuration file changes
- '**/audit.toml'
push:
paths:
# Run if workflow changes
- '.github/workflows/audit.yml'
# Run on changed dependencies
- '**/Cargo.toml'
- '**/Cargo.lock'
# Run if the configuration file changes
- '**/audit.toml'

jobs:
security_audit:
runs-on: ubuntu-latest
steps:
- name: Set up Rust
uses: actions/checkout@v4
- name: Run audit
uses: actions-rust-lang/audit@v1

0 comments on commit bd6893f

Please sign in to comment.