-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (42 loc) · 1.36 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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 Nord VPN Hosts
run: python nordvpn.py
- name: Clean up IPs
run: python nord_vpn_cleanup.py
- name: Subnet Generation
run: python pia_subnet_csv.py
- name: Configure Git
run: |
git config --local user.email "[email protected]"
git config --local user.name "github-actions[bot]"
- name: Commit changes
run: |
git add nordvpn_ips.csv new_nordvpn_ips.csv nord_subnet.csv
git diff-index --quiet HEAD || git commit -m "[AUTO] update of IPs $(date '+%Y-%m-%d %H:%M:%S')"
- name: Push changes
id: push
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}