Skip to content

Move UUIDText, dsc, and TimeSync to HashMaps #258

Move UUIDText, dsc, and TimeSync to HashMaps

Move UUIDText, dsc, and TimeSync to HashMaps #258

Workflow file for this run

name: Security audit
on:
pull_request:
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
schedule:
- cron: "0 0 * * *"
jobs:
security_audit:
strategy:
fail-fast: false
matrix:
info:
- {
os: "ubuntu-latest",
target: "x86_64-unknown-linux-gnu",
cross: false,
}
runs-on: ${{ matrix.info.os }}
steps:
- uses: actions/checkout@v4
- run: rustup update
- name: Generate Cargo.lock
run: cargo generate-lockfile
- name: Run audit action to view any security issues
uses: rustsec/audit-check@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}