diff --git a/.github/workflows/fetch-protonvpn.yml b/.github/workflows/fetch-protonvpn.yml index ca43ef26..39e3d28a 100644 --- a/.github/workflows/fetch-protonvpn.yml +++ b/.github/workflows/fetch-protonvpn.yml @@ -33,11 +33,11 @@ jobs: fi ips_covered=$(awk -F/ 'BEGIN{a=0}{if($2==""){a+=1}else{a+=2^(32-$2)}}END{print a}' protonvpn.txt) - if [[ "$ips_covered" -lt 4000 ]]; then + if [[ "$ips_covered" -lt 6000 ]]; then echo "Too few addresses covered ($ips_covered)" exit 1 fi - if [[ "$ips_covered" -gt 8000 ]]; then + if [[ "$ips_covered" -gt 10000 ]]; then echo "Too many addresses covered ($ips_covered)" exit 1 fi