💡Fingerprints Update #98
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
name: 💡Fingerprints Update | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Setup golang | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21.x | |
- name: Installing Update binary | |
run: | | |
go install github.com/projectdiscovery/wappalyzergo/cmd/update-fingerprints | |
shell: bash | |
- name: Downloading latest wappalyzer changes | |
run: | | |
update-fingerprints -fingerprints fingerprints_data.json | |
shell: bash | |
- name: Create local changes | |
run: | | |
git add fingerprints_data.json | |
- name: Commit files | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git commit -m "Weekly fingerprints update [$(date)] :robot:" -a --allow-empty | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} |