We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 324d2ff commit 06dc01aCopy full SHA for 06dc01a
action.yml
@@ -2,12 +2,15 @@ name: "MurphySec code scan"
2
description: "Software Supply Chain Security Scanning Tool"
3
author: "Wei Zhao <[email protected]>"
4
inputs:
5
- MURPHYSEC_TOKEN: ${{ secrets.MURPHYSEC_TOKEN }}
+ MURPHYSEC_TOKEN:
6
description: "The token should be filled in this field."
7
required: true
8
+ default: test
9
runs:
10
using: "composite"
11
steps:
12
+ - name: Checkout_Actions
13
+ uses: actions/checkout@v3
14
- run: wget -q https://s.murphysec.com/release/install.sh -O - | /bin/bash
15
shell: bash
16
- run: murphysec scan . --token ${{ secrets.MURPHYSEC_TOKEN }} --json >scan_results.json
0 commit comments