2021-05-15 14:45:52 +00:00
|
|
|
name: 🛠 Template Validate
|
|
|
|
|
2021-08-23 11:39:47 +00:00
|
|
|
on: [ push, pull_request ]
|
2021-05-15 14:45:52 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-06 09:01:18 +00:00
|
|
|
- uses: actions/checkout@v2
|
2021-05-15 14:45:52 +00:00
|
|
|
|
2022-03-06 09:01:18 +00:00
|
|
|
- name: Get Github tag
|
|
|
|
id: meta
|
|
|
|
run: |
|
|
|
|
echo "::set-output name=tag::$(curl --silent "https://api.github.com/repos/projectdiscovery/nuclei/releases/latest" | jq -r .tag_name)"
|
2021-12-25 07:43:56 +00:00
|
|
|
|
|
|
|
- name: Setup Nuclei
|
2022-03-06 09:01:18 +00:00
|
|
|
if: steps.meta.outputs.tag != ''
|
2021-12-25 07:43:56 +00:00
|
|
|
env:
|
2022-03-06 09:01:18 +00:00
|
|
|
VERSION: ${{ steps.meta.outputs.tag }}
|
2021-05-15 14:45:52 +00:00
|
|
|
run: |
|
2021-12-25 07:43:56 +00:00
|
|
|
wget -q https://github.com/projectdiscovery/nuclei/releases/download/${VERSION}/nuclei_${VERSION:1}_linux_amd64.zip
|
|
|
|
sudo unzip nuclei*.zip -d /usr/local/bin
|
|
|
|
working-directory: /tmp
|
2021-05-15 14:45:52 +00:00
|
|
|
|
|
|
|
- name: Template Validation
|
|
|
|
run: |
|
2021-12-26 04:47:37 +00:00
|
|
|
cp -r ${{ github.workspace }} $HOME
|
2022-07-04 13:17:08 +00:00
|
|
|
nuclei -validate -t . -et .git/
|
2021-10-27 10:04:35 +00:00
|
|
|
nuclei -validate -w ./workflows
|