Skip to content

Commit 0ac6953

Browse files
committed
Revert "testing direct docker image"
This reverts commit 7a27ed6.
1 parent 7a27ed6 commit 0ac6953

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

action.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,15 @@ inputs:
1515
required: false
1616
default: ''
1717
runs:
18-
using: 'docker'
19-
image: 'securestackau/bloodhound-cli:latest'
20-
env:
18+
using: 'composite'
19+
steps:
20+
- name: Pull bloodhound-cli image
21+
shell: bash
22+
run: docker pull securestackau/bloodhound-cli
23+
- name: Run bloodhound-cli
24+
shell: bash
25+
env:
2126
BH_API_KEY: ${{ inputs.securestack_api_key }}
2227
BH_APP_ID: ${{ inputs.securestack_app_id }}
2328
BH_SEVERITY: ${{ inputs.severity }}
24-
args:
25-
- recon ${{ inputs.flags }}
29+
run: echo $BH_API_KEY; docker run -e BH_API_KEY -e BH_APP_ID -e BH_SEVERITY securestackau/bloodhound-cli recon ${{ inputs.flags }}

0 commit comments

Comments
 (0)