-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modified workflow actions to generate latest tag
- Loading branch information
1 parent
530b8a6
commit 00fe688
Showing
3 changed files
with
67 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: checkout-and-setup-python | ||
description: 'Checkout the repository and setup Python' | ||
inputs: | ||
python-version: | ||
description: 'Python version to use' | ||
required: false | ||
default: '3.11' | ||
runs: | ||
using: 'composite' | ||
steps: | ||
- uses: actions/setup-python@v4 | ||
name: Setup Python | ||
with: | ||
python-version: ${{ inputs.python-version }} | ||
cache: 'pip' # caching pip dependencies | ||
|
||
- name: Git check | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "mantis" | ||
git --version | ||
git config --list | ||
shell: bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,19 @@ | ||
[tool.poetry] | ||
name = "mantis" | ||
version = "0.1.0" | ||
version = "1.0.0" | ||
description = "Mantis is a security framework that automates the workflow of discovery, reconnaissance, and vulnerability scanning." | ||
authors = ["Prateek Thakare <[email protected]>", | ||
"Praveen Kanniah <[email protected]>"] | ||
"Bharath Kumar <[email protected]>", | ||
"Saddam Hussain <[email protected]>", | ||
"Hitesh Kumar <[email protected]>", | ||
"Praveen Kanniah <[email protected]>" | ||
] | ||
maintainers = ["Prateek Thakare <[email protected]>", | ||
"Praveen Kanniah <[email protected]>"] | ||
"Bharath Kumar <[email protected]>", | ||
"Saddam Hussain <[email protected]>", | ||
"Hitesh Kumar <[email protected]>", | ||
"Praveen Kanniah <[email protected]>" | ||
] | ||
license = "apache2" | ||
repository = "https://github.com/PhonePe/mantis" | ||
keywords = ["asset discovery", "recon", "recon automation", "osint", "threat intelligence", "recon framework"] | ||
|