1
0
Fork 0
mirror of https://github.com/imjasonh/krust synced 2026-07-16 12:33:10 +00:00
krust/vendor/oci-distribution/.github/workflows/daily_security.yml
Jason Hall cf644c9570
fix: Add vendor/oci-distribution files directly instead of as submodule
The previous commit added vendor/oci-distribution as a git submodule pointer,
which caused CI to fail because the files weren't actually present.
This commit removes the submodule and adds the actual files directly.
2025-06-08 10:00:38 -04:00

14 lines
273 B
YAML

name: Security audit
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.2
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}