Skip to content

Commit

Permalink
chore(ci): setup cargo-deny
Browse files Browse the repository at this point in the history
  • Loading branch information
paolobarbolini committed Apr 1, 2024
1 parent eb4e797 commit eda421e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/deny.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Security audit

on:
schedule:
# Runs at 05:00 UTC everyday
- cron: '0 5 * * *'
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
pull_request:

jobs:
audit:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- uses: EmbarkStudios/cargo-deny-action@v1

0 comments on commit eda421e

Please sign in to comment.