Nuclei - DAST Scan #649
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
name: Nuclei - DAST Scan | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
nuclei-scan: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Nuclei - DAST Scan | |
uses: projectdiscovery/nuclei-action@main | |
with: | |
target: http://api-rof-bd.herokuapp.com/api/ | |
- name: GitHub Workflow artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: nuclei.log | |
path: nuclei.log | |
- name: GitHub Security Dashboard Alerts update | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: nuclei.sarif |