Files
tkmind_go/.github/workflows/cargo-deny.yml
T
dependabot[bot] 5e0881a873 chore(deps): bump EmbarkStudios/cargo-deny-action from 2.0.17 to 2.0.19 (#9372)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-22 21:06:54 +00:00

30 lines
767 B
YAML

name: "Cargo Deny"
on:
push:
paths:
# Run if workflow changes
- '.github/workflows/cargo-deny.yml'
# Run on changed dependencies
- '**/Cargo.toml'
- '**/Cargo.lock'
# Run if the configuration file changes
- 'deny.toml'
# Rerun periodically to pick up new advisories
schedule:
- cron: '0 0 * * *'
# Run manually
workflow_dispatch:
jobs:
deny:
runs-on: ubuntu-latest
if: github.repository == 'aaif-goose/goose'
permissions:
contents: read
steps:
- uses: actions/checkout@v6
# https://github.com/EmbarkStudios/cargo-deny-action v2.0.15
- uses: EmbarkStudios/cargo-deny-action@a531616d8ce3b9177443e48a1159bc945a099823
with:
command: check advisories