From 84f4b48c0082e62197ab2513022ea25884cbc9fc Mon Sep 17 00:00:00 2001 From: Sudesh yalavarthi Date: Wed, 13 Nov 2024 18:00:04 +0000 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 53 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..c3d48ad --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,53 @@ +name: NordVPN IP Updater + +on: + schedule: + - cron: '0 */1 * * *' # Runs every 2 hours + workflow_dispatch: # Allows manual trigger + +jobs: + update-iocs: + runs-on: ubuntu-latest + permissions: + contents: write + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.10' + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install dnspython + pip install requests + + - name: Gather PIA subnets + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: python nordvpn.py + + - name: Clean up zmap output(P) + run: python nord_vpn_cleanup.py + + + - name: Configure Git + run: | + git config --local user.email "sudesh@sudesh.com" + git config --local user.name "github-actions[bot]" + + - name: Commit changes + run: | + git add pia_ips.csv new_pia_ips.csv + git diff-index --quiet HEAD || git commit -m "[AUTO] update IoCs $(date '+%Y-%m-%d %H:%M:%S')" + + - name: Push changes + id: push + uses: ad-m/github-push-action@v0.6.0 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + branch: ${{ github.ref }}