Update main.yml #238
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push] | |
jobs: | |
soos: | |
permissions: | |
security-events: write # for uploading code scanning alert info | |
name: SOOS SAST Scan | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Run SOOS DAST analysis testing | |
uses: soos-io/soos-dast-github-action@v2 | |
with: | |
client_id: ${{ secrets.QA_SOOS_CLIENT_ID }} | |
api_key: ${{ secrets.QA_SOOS_API_KEY }} | |
scan_mode: "baseline" | |
#api_scan_format: "soap" | |
target_url: https://brokencrystals.com/ | |
#target_url: "https://www.dataaccess.com/webservicesserver/NumberConversion.wso" | |
project_name: 'DAST Apiscan soap' | |
#project_name: ${{ github.repository }} | |
#request_eeaders: "invalid" | |
api_url: "https://qa-api.soos.io/api/" | |
#verbose: "true" | |
#debug: "false" | |
#other_options: "-d" | |
output_format: "sarif" | |
- name: Upload SOOS DAST SARIF Report | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: results.sarif |