mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-01-31 07:43:27 +08:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
32 lines
978 B
YAML
32 lines
978 B
YAML
name: 📝 CVE JSON Metadata
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- '**/cves/**'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
cve2json:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'projectdiscovery/nuclei-templates'
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: projectdiscovery/actions/setup/go@v1
|
|
with:
|
|
go-version: 'stable'
|
|
- run: go run main.go $GITHUB_WORKSPACE/http/cves/,$GITHUB_WORKSPACE/network/cves/,$GITHUB_WORKSPACE/javascript/cves/ $GITHUB_WORKSPACE/cves.json
|
|
working-directory: .github/scripts/yaml2json
|
|
- run: md5sum cves.json | cut -d' ' -f1 > cves.json-checksum.txt
|
|
- uses: projectdiscovery/actions/setup/git@v1
|
|
- uses: projectdiscovery/actions/commit@v1
|
|
with:
|
|
files: 'cves.json*'
|
|
message: 'chore: generate CVEs metadata 🤖'
|
|
- name: Push changes
|
|
run: |
|
|
git pull origin $GITHUB_REF --rebase
|
|
git push origin $GITHUB_REF
|