Skip to content

Daily Security Audit #1010

Daily Security Audit

Daily Security Audit #1010

# =============
# This file is automatically generated from the templates in stackabletech/operator-templating
# DON'T MANUALLY EDIT THIS FILE
# =============
---
name: Daily Security Audit
on:
schedule:
- cron: '15 4 * * *'
workflow_dispatch:
permissions: {}
jobs:
audit:
runs-on: ubuntu-latest
permissions:
contents: read
# rustsec/audit-check publishes its results as a Check run, which requires this scope
checks: write
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- uses: rustsec/audit-check@69366f33c96575abad1ee0dba8212993eecbe998 # v2.0.0
# Build against stable because cargo-audit sometimes depends on things
# that require a newer Rust version than our pinned toolchain. This does
# not influence the result, so it should be safe.
env:
RUSTUP_TOOLCHAIN: stable
with:
token: ${{ secrets.GITHUB_TOKEN }}