You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: 'Scans your application for the presence of serious vulnerabilities in Log4j'
3
+
icon: 'shield'
4
+
color: 'green'
5
+
inputs:
6
+
securestack_api_key:
7
+
description: 'SecureStack API key - generate an API key at https://app.securestack.com'
8
+
required: true
9
+
securestack_app_id:
10
+
description: 'SecureStack Application ID - can be retrieved by accessing required application at https://app.securestack.com'
11
+
required: true
12
+
severity:
13
+
description: 'Severities lower than this value will be reported in the workflow console but will not cause an error for the action; value should be one of: critical | high | medium | low'
14
+
required: true
15
+
runs:
16
+
using: 'composite'
17
+
steps:
18
+
- name: Pull bloodhound-cli image
19
+
shell: bash
20
+
run: docker pull securestackau/bloodhound-cli
21
+
- name: Run bloodhound-cli
22
+
shell: bash
23
+
env:
24
+
BH_API_KEY: ${{ inputs.securestack_api_key }}
25
+
BH_APP_ID: ${{ inputs.securestack_app_id }}
26
+
BH_SEVERITY: ${{ inputs.severity }}
27
+
run: docker run -e BH_API_KEY -e BH_APP_ID -e BH_SEVERITY securestackau/bloodhound-cli code -t java -a $BH_APP_ID; echo $?
0 commit comments