Skip to content

Update nmap scripts index #127

Update nmap scripts index

Update nmap scripts index #127

name: Update nmap scripts index
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 0"
permissions: read-all
jobs:
build:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Update the nmap script indexes
run: |
chmod +x build-nmap-scripts-index.sh
bash build-nmap-scripts-index.sh
- name: Set up Git user
run: git config --global user.email "[email protected]"; git config --global user.name "GHActionBot"
- name: Commit update
run: git commit -am "Sync nmap scripts index MD file"; git push