diff --git a/.github/workflows/check-datasources.yml b/.github/workflows/check-datasources.yml index 58dba93..e8388bb 100644 --- a/.github/workflows/check-datasources.yml +++ b/.github/workflows/check-datasources.yml @@ -4,8 +4,8 @@ name: Data source validity checks on: schedule: - # Runs the workflow every day at midnight - - cron: '0 0 * * *' + # Runs the workflow every Friday at 8am + - cron: '0 8 * * 5' env: DB_NAME: gis diff --git a/charging_stations_pipelines/pipelines/fr/france.py b/charging_stations_pipelines/pipelines/fr/france.py index e4a36c4..77ac80a 100644 --- a/charging_stations_pipelines/pipelines/fr/france.py +++ b/charging_stations_pipelines/pipelines/fr/france.py @@ -46,7 +46,7 @@ def run(self): @staticmethod def download_france_gov_file(target_file): """Download a file from the French government website.""" - base_url = "https://transport.data.gouv.fr/resources/81548" + base_url = "https://transport.data.gouv.fr/resources/81623" r = requests.get(base_url, headers={"User-Agent": "Mozilla/5.0"}) soup = BeautifulSoup(r.content, "html.parser")