Mullvad VPN Update #112
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: Mullvad VPN Update | |
on: | |
schedule: | |
- cron: '0 */2 * * *' # Runs every 2 hours | |
workflow_dispatch: | |
jobs: | |
fetch-mullvad-configs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install requests | |
- name: Run Mullvad Config Script | |
run: | | |
cd Lists/VPN/MullVad | |
python fetch_mullvad_relay_servers_ips.py | |
- name: Commit and Push results | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git pull | |
git add Lists/VPN/MullVad/relays.json Lists/VPN/MullVad/mullvad_relay_servers_ips_list.csv | |
git commit -m "Update Mullvad VPN relays list" --allow-empty | |
git push |