mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 04:05:27 +00:00
version update
This commit is contained in:
parent
2d88c21923
commit
1ade5a0824
4
.github/release.yml
vendored
4
.github/release.yml
vendored
@ -3,10 +3,10 @@ changelog:
|
|||||||
authors:
|
authors:
|
||||||
- dependabot
|
- dependabot
|
||||||
categories:
|
categories:
|
||||||
- title: 🎉 Features
|
- title: 🎉 New Features
|
||||||
labels:
|
labels:
|
||||||
- "Type: Enhancement"
|
- "Type: Enhancement"
|
||||||
- title: 🐞 Bugs
|
- title: 🐞 Bug Fixes
|
||||||
labels:
|
labels:
|
||||||
- "Type: Bug"
|
- "Type: Bug"
|
||||||
- title: 🔨 Maintenance
|
- title: 🔨 Maintenance
|
||||||
|
|||||||
29
.github/workflows/release-test.yml
vendored
Normal file
29
.github/workflows/release-test.yml
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
name: 🔨 Release Test
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- '**.go'
|
||||||
|
- '**.mod'
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release-test:
|
||||||
|
runs-on: ubuntu-latest-16-cores
|
||||||
|
steps:
|
||||||
|
- name: "Check out code"
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Set up Go
|
||||||
|
uses: actions/setup-go@v4
|
||||||
|
with:
|
||||||
|
go-version: 1.20.x
|
||||||
|
|
||||||
|
- name: release test
|
||||||
|
uses: goreleaser/goreleaser-action@v4
|
||||||
|
with:
|
||||||
|
args: "release --clean --snapshot"
|
||||||
|
version: latest
|
||||||
|
workdir: v2/
|
||||||
@ -17,7 +17,7 @@ const (
|
|||||||
CLIConfigFileName = "config.yaml"
|
CLIConfigFileName = "config.yaml"
|
||||||
ReportingConfigFilename = "reporting-config.yaml"
|
ReportingConfigFilename = "reporting-config.yaml"
|
||||||
// Version is the current version of nuclei
|
// Version is the current version of nuclei
|
||||||
Version = `v2.9.10`
|
Version = `v2.9.11`
|
||||||
// Directory Names of custom templates
|
// Directory Names of custom templates
|
||||||
CustomS3TemplatesDirName = "s3"
|
CustomS3TemplatesDirName = "s3"
|
||||||
CustomGitHubTemplatesDirName = "github"
|
CustomGitHubTemplatesDirName = "github"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user