We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does the action need updating?
- name: Nuclei Scan uses: projectdiscovery/nuclei-action@main with: urls: output/active_urls.txt output: output/nuclei_output.txt
Run projectdiscovery/nuclei-action@main with: urls: output/active_urls.txt output: output/nuclei_output.txt json: false include-rr: false github-report: false env: GOROOT: /opt/hostedtoolcache/go/1.14.15/x64 [FTL] Program exiting: no template/templates provided
The text was updated successfully, but these errors were encountered:
Dear @random-robbie,
You should run a checkout stage before running a nuclei action. The checkout command enables working with files stored in the repository.
Here is an example of a full workflow:
jobs: nuclei-scan: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Nuclei Scan uses: projectdiscovery/nuclei-action@main with: urls: output/active_urls.txt output: output/nuclei_output.txt - name: GitHub Workflow artifacts uses: actions/upload-artifact@v2 with: name: nuclei.log path: output/nuclei_output.txt
Feel free to ping me on Discord if you need any onboarding.
Best regards.
Sorry, something went wrong.
toufik-airane
No branches or pull requests
Does the action need updating?
pd-actions.yaml
Github Log
The text was updated successfully, but these errors were encountered: