Skip to content

Commit

Permalink
Update dependencies and add audit workflow (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
ss-es authored Mar 11, 2024
1 parent 8730b41 commit 482cece
Show file tree
Hide file tree
Showing 2 changed files with 707 additions and 435 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run Cargo audit

on:
push:
branches:
- 'main'
schedule:
- cron: '0 0 * * 1' # Run on Mondays
workflow_dispatch:

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

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y protobuf-compiler
- name: Audit dependencies
run: cargo audit
Loading

0 comments on commit 482cece

Please sign in to comment.