Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
prabhu committed Jan 6, 2020
1 parent 1b42eb6 commit 0265566
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,24 @@ uses: actions/cdxgen-action@v1
Specifiy parameters for automatic submission to a dependency track or AppThreat server
```yaml
uses: actions/cdxgen-action@v1
with:
output: "./docs/bom.xml"
serverUrl: "https://deptrack.appthreat.io"
apiKey: ${{ secrets.apiKey }}
- uses: actions/cdxgen-action@v1
with:
output: "./reports/bom.xml"
serverUrl: "https://deptrack.appthreat.io"
apiKey: ${{ secrets.apiKey }}
```
Submit to server as well as store artefacts
```yaml
- uses: actions/cdxgen-action@v1
with:
output: "./reports/bom.xml"
serverUrl: "https://deptrack.appthreat.io"
apiKey: ${{ secrets.apiKey }}

- uses: actions/upload-artifact@v1
with:
name: reports
path: reports
```

0 comments on commit 0265566

Please sign in to comment.