Update nmap scripts index #129
This file contains hidden or 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
| 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 |