An open API service indexing awesome lists of open source software.

https://github.com/marcuwynu23/nmap-action

github action
https://github.com/marcuwynu23/nmap-action

Last synced: 7 months ago
JSON representation

github action

Awesome Lists containing this project

README

          

#### How to use:

```yml
name: "Run Nmap Scan"

on:
push:
branches:
- main

permissions:
contents: read
issues: write # ✅ Required for issue creation

jobs:
nmap_scan:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Install Nmap
run: sudo apt-get update && sudo apt-get install -y nmap

- name: Run Nmap Scan
uses: marcuwynu23/nmap-action@v1.0.0
with:
target: "cloudmateria.com"
issue_title: "🚨 Nmap Security Scan Alert"
fail_action: "true"
allow_issue_writing: "true"
```