Skip to content

Commit 482cece

Browse files
authored
Update dependencies and add audit workflow (#114)
1 parent 8730b41 commit 482cece

File tree

2 files changed

+707
-435
lines changed

2 files changed

+707
-435
lines changed

.github/workflows/audit.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Run Cargo audit
2+
3+
on:
4+
push:
5+
branches:
6+
- 'main'
7+
schedule:
8+
- cron: '0 0 * * 1' # Run on Mondays
9+
workflow_dispatch:
10+
11+
jobs:
12+
audit:
13+
runs-on: ubuntu-latest
14+
timeout-minutes: 10
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v4
18+
19+
- name: Install dependencies
20+
run: |
21+
sudo apt-get update
22+
sudo apt-get install -y protobuf-compiler
23+
24+
- name: Audit dependencies
25+
run: cargo audit

0 commit comments

Comments
 (0)