-
Notifications
You must be signed in to change notification settings - Fork 4
/
action.yaml
59 lines (59 loc) · 2.01 KB
/
action.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: "Mondoo Github Repository Action"
description: "Scan Github repository for misconfigurations with Mondoo"
branding:
icon: "shield"
color: "purple"
inputs:
repository:
description: GitHub Repository
required: true
token:
description: GitHub Authentication Token
required: true
args:
description: >-
Additional arguments to pass to Mondoo Client.
required: false
log-level:
description: >-
Sets the log level: error, warn, info, debug, trace (default "info")
default: info
required: false
output:
description: >-
Set the output format for scan results: compact, yaml, json, junit, csv, summary, full, report (default "compact")
default: compact
required: false
score-threshold:
description: >-
Sets the score threshold for scans. Scores that fall below the threshold will exit 1. (default "0" - job continues regardless of the score returned by a scan).
default: "0"
required: false
service-account-credentials:
description: "Base64 encoded service account credentials used to authenticate with Mondoo Platform"
required: true
is-cicd:
description: "Automatically detects the GitHub Action Runs and report results into the CI/CD view"
default: true
runs:
using: "composite"
steps:
- name: Install Mondoo Client
shell: bash
run: |
echo Installing Mondoo Client...
echo ${{ inputs.service-account-credentials }} | base64 -d > mondoo.json
curl -sSL https://mondoo.com/install.sh | bash
- name: Mondoo status
shell: bash
run: mondoo status --config mondoo.json
- name: Run mondoo scan ${{ inputs.asset-type }}
shell: bash
run: >
mondoo scan github repo ${{ inputs.repository }} --token "${{ inputs.token }}"
--log-level "${{ inputs.log-level }}"
--output "${{ inputs.output }}"
--score-threshold "${{ inputs.score-threshold }}"
--detect-cicd="${{ inputs.is-cicd }}"
--config mondoo.json
${{ inputs.args }}