From 572b863adbeeaf0aed844b8977f77d2cb68293a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= Date: Tue, 4 Nov 2025 21:56:48 +0100 Subject: [PATCH] Run scraper every 15 minutes, bump workflow to Python 3.14, and use `uv sync --all-groups -U` --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6fbdb70..dbc16cd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,12 +2,12 @@ name: Run Scraper on: schedule: - - cron: '0 * * * *' # Every hour + - cron: "0 */15 * * *" # Every 15 minutes workflow_dispatch: push: paths: - - 'scrape.py' - - '.github/workflows/main.yml' + - "scrape.py" + - ".github/workflows/main.yml" jobs: scrape: @@ -21,7 +21,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '3.13' + python-version: "3.14" - name: Install uv id: setup-uv @@ -30,7 +30,7 @@ jobs: enable-cache: true - name: Install dependencies - run: uv sync + run: uv sync --all-groups -U - name: Run script run: uv run python scrape.py