Skip to content

Commit

Permalink
Create nuclei.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Techini authored Sep 1, 2023
1 parent 4a556e2 commit 4d11e77
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/nuclei.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Nuclei - Vulnerability Scan

on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:

jobs:
nuclei-scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Nuclei - Vulnerability Scan
uses: projectdiscovery/nuclei-action@main
with:
target: https://example.com

- 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

0 comments on commit 4d11e77

Please sign in to comment.