Skip to content

Commit

Permalink
Refactor cargo-check action to cargo-deny
Browse files Browse the repository at this point in the history
  • Loading branch information
hatchan committed Apr 29, 2024
1 parent 69acf15 commit 01de4bf
Show file tree
Hide file tree
Showing 15 changed files with 518 additions and 417 deletions.
24 changes: 0 additions & 24 deletions .github/workflows/audit.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/audit_rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: Audit Rust code

on:
push:
branches: ["**"]
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
- "**/deny.toml"
schedule:
- cron: "43 1 * * *"
workflow_dispatch:

jobs:
rust_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive

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

0 comments on commit 01de4bf

Please sign in to comment.