-
Notifications
You must be signed in to change notification settings - Fork 0
186 lines (142 loc) Β· 4.97 KB
/
ip_list.yaml
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
name: π Update IP lists
on:
schedule:
- cron: "0 19 * * *"
workflow_dispatch:
jobs:
update_lists:
runs-on: ubuntu-latest
steps:
- name: βοΈ Checkout
uses: actions/checkout@v2
- name: π Set up Python3
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: βοΈ Install dependencies
run: |
python -m pip install --upgrade pip
pip install dnspython
pip install aiofiles
pip install ipwhois
- name: βοΈ Resolve base domains
run: |
python ./src/generate_base_ip_list.py
- name: π Resolve atlanta
run: |
python ./src/generate_voice_ip_list.py atlanta
- name: π Resolve brazil
run: |
python ./src/generate_voice_ip_list.py brazil
- name: π Resolve bucharest
run: |
python ./src/generate_voice_ip_list.py bucharest
- name: π Resolve buenos-aires
run: |
python ./src/generate_voice_ip_list.py bucharest
- name: π Resolve dubai
run: |
python ./src/generate_voice_ip_list.py dubai
- name: π Resolve finland
run: |
python ./src/generate_voice_ip_list.py finland
- name: π Resolve frankfurt
run: |
python ./src/generate_voice_ip_list.py frankfurt
- name: π Resolve hongkong
run: |
python ./src/generate_voice_ip_list.py hongkong
- name: π Resolve india
run: |
python ./src/generate_voice_ip_list.py india
- name: π Resolve japan
run: |
python ./src/generate_voice_ip_list.py japan
- name: π Resolve madrid
run: |
python ./src/generate_voice_ip_list.py madrid
- name: π Resolve milan
run: |
python ./src/generate_voice_ip_list.py milan
- name: π Resolve newark
run: |
python ./src/generate_voice_ip_list.py newark
- name: π Resolve rotterdam
run: |
python ./src/generate_voice_ip_list.py rotterdam
- name: π Resolve russia
run: |
python ./src/generate_voice_ip_list.py russia
- name: π Resolve santa-clara
run: |
python ./src/generate_voice_ip_list.py santa-clara
- name: π Resolve santiago
run: |
python ./src/generate_voice_ip_list.py santiago
- name: π Resolve seattle
run: |
python ./src/generate_voice_ip_list.py seattle
- name: π Resolve singapore
run: |
python ./src/generate_voice_ip_list.py singapore
- name: π Resolve south-korea
run: |
python ./src/generate_voice_ip_list.py south-korea
- name: π Resolve southafrica
run: |
python ./src/generate_voice_ip_list.py southafrica
- name: π Resolve stage-scale
run: |
python ./src/generate_voice_ip_list.py stage-scale
- name: π Resolve stockholm
run: |
python ./src/generate_voice_ip_list.py stockholm
- name: π Resolve sydney
run: |
python ./src/generate_voice_ip_list.py sydney
- name: π Resolve tel-aviv
run: |
python ./src/generate_voice_ip_list.py tel-aviv
- name: π Resolve us-central
run: |
python ./src/generate_voice_ip_list.py us-central
- name: π Resolve us-east
run: |
python ./src/generate_voice_ip_list.py us-east
- name: π Resolve us-south
run: |
python ./src/generate_voice_ip_list.py us-south
- name: π Resolve us-west
run: |
python ./src/generate_voice_ip_list.py us-west
- name: π Resolve warsaw
run: |
python ./src/generate_voice_ip_list.py warsaw
- name: π Resolve st-pete
run: |
python ./src/generate_voice_ip_list.py st-pete
- name: π Resolve dammam
run: |
python ./src/generate_voice_ip_list.py dammam
- name: π Resolve jakarta
run: |
python ./src/generate_voice_ip_list.py jakarta
- name: π Resolve montreal
run: |
python ./src/generate_voice_ip_list.py montreal
- name: π Resolve oregon
run: |
python ./src/generate_voice_ip_list.py oregon
- name: π Generating configurations
run: |
python ./src/generate_singlefiles.py
- name: π Recognizing CIDRs
run: |
python ./src/generate_cidr_list.py
- name: π« Commit the changes
run: |
git config --global user.name "github-actions"
git config --global user.email "[email protected]"
git add -A
git commit -m "[bot] Automatic update of lists ($(date -u +'%m/%d/%y %H:%M:%S UTC'))"
git push --force https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git HEAD:main