Skip to content
This repository has been archived by the owner on Jul 30, 2024. It is now read-only.

Run Cargo audit

Run Cargo audit #22

Workflow file for this run

name: Run Cargo audit
on:
push:
branches:
- 'develop'
- 'main'
schedule:
- cron: '0 0 * * 1' # Run on Mondays
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ (github.ref == 'refs/heads/main' && github.run_number) || github.ref }}
cancel-in-progress: true
jobs:
audit:
runs-on: ubuntu-latest
timeout-minutes: 120
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