2 Commits

Author SHA1 Message Date
Dreaded_X 3f3ba2bbdf chore: Add audit workflow 2026-04-03 03:42:19 +02:00
Dreaded_X e1f4b351e9 chore: Use latest nightly instead of specific version 2026-04-03 03:40:58 +02:00
2 changed files with 15 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
name: Security audit
on:
push:
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
jobs:
security_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: rustsec/audit-check@v2.0.0
with:
token: ${{ secrets.GH_TOKEN }}
+1 -1
View File
@@ -1,4 +1,4 @@
[toolchain]
channel = "nightly-2026-03-12"
channel = "nightly"
profile = "default"
components = ["rust-analyzer"]