Files
accounted/.github/workflows/compliance-swarm.yml
T
dependabot[bot] be9bec6b0d build(deps): bump actions/checkout from 6 to 7 (#764)
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v6...v7)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-25 12:39:32 +02:00

58 lines
1.5 KiB
YAML

name: compliance — full swarm
# Full hybrid audit: deterministic scanners + LLM-driven deep_audit checks
# (RoPA drift, AGPL §13 evaluation, IDOR/access-control reasoning, ISMS clause
# review, change-management bypass detection).
#
# Triggers:
# - Nightly cron at 02:00 UTC
# - workflow_dispatch (run anytime)
# - PRs labeled `compliance:full-audit`
on:
schedule:
- cron: '0 2 * * *'
workflow_dispatch:
inputs:
reason:
description: 'Why are you running this manually?'
required: false
default: ''
pull_request:
types: [labeled]
permissions:
contents: read
pull-requests: write
security-events: write
concurrency:
group: compliance-swarm-${{ github.ref }}
cancel-in-progress: false
jobs:
swarm:
name: Full hybrid audit
if: |
github.event_name != 'pull_request'
|| github.event.label.name == 'compliance:full-audit'
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: erp-mafia/compliancemaxx@v2
with:
mode: audit # v2 name; was `swarm` in v1
llm-provider: bedrock
fail-on-findings: false # observational while bedding in
env:
AWS_REGION: eu-north-1
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
# Override default model if desired:
# COMPLIANCE_BEDROCK_MODEL: 'eu.anthropic.claude-sonnet-4-6'