1
0
Fork 0
mirror of synced 2026-06-05 16:28:19 +00:00
configure-aws-credentials/examples/cfn-deploy-example/.github/workflows/compliance.yml
Henry Griffiths 0994a359d5
chore: update actions/checkout to v5 (#1471)
Co-authored-by: Tom Keller <1083460+kellertk@users.noreply.github.com>
2025-09-04 23:53:56 +00:00

15 lines
No EOL
418 B
YAML

name: 'compliance'
## run ci testing on all push events
on: [push]
jobs:
## Guard rule set
sast-guard:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: grolston/guard-action@main
with:
data_directory: './cloudformation/' ## change to your template directory
rule_set: 'FedRAMP-Moderate'
show_summary: 'all'
output_format: 'single-line-summary'