mmoxi 0.4.3

tools for IBM Storage Scale file systems
Documentation
---

name: rust-audit

on:
  pull_request:
    paths:
      - '.github/workflows/rust-audit.yml'
      - 'Cargo.toml'
      - 'Cargo.lock'
  push:
    branches:
      - main
      - wip/next
    paths:
      - '.github/workflows/rust-audit.yml'
      - 'Cargo.toml'
      - 'Cargo.lock'
  schedule:
    - cron: '0 6 * * 1'

jobs:
  cargo-audit:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v6
      - uses: rustsec/audit-check@v2.0.0
        with:
          token: ${{ secrets.GITHUB_TOKEN }}

...