microsoft/hve-core

Public

mirrored fromhttps://github.com/microsoft/hve-coreAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
feat-ds-agent

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.checkov.yaml

29lines · modecode

1# Checkov configuration for security and compliance scanning
2# Scans GitHub Actions workflows, JSON, YAML files, and secrets
3
4framework:
5 - github_actions
6 - json
7 - yaml
8 - secrets
9
10# Evaluate variables in configuration files
11evaluate-variables: true
12
13# Output formats
14output:
15 - junitxml
16 - json
17
18# Optional: Specify output file paths
19# output-file-path: checkov-junit.xml,checkov-results.json
20
21# Optional: Skip specific checks
22# skip-check:
23# - CKV_SECRET_1
24# - CKV_GHA_1
25
26# Optional: Exclude directories
27# skip-path:
28# - node_modules
29# - .git
30