Test Python Package / unit-tests (pull_request) Successful in 12s
Code Quality Pipeline / code-quality (pull_request) Successful in 19s
PR Title Check / check-title (pull_request) Successful in 31s
Test Python Package / integration-tests (pull_request) Successful in 23s
Test Python Package / coverage-report (pull_request) Successful in 10s
Route Python hooks through uv run with versions pinned in uv.lock, add explicit Ruff settings, and extend the dependency bot to run pre-commit autoupdate. Co-authored-by: Cursor <cursoragent@cursor.com>
56 lines
1.6 KiB
YAML
56 lines
1.6 KiB
YAML
name: Dependency Update Bot
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 3 * * 1" # Every Monday at 03:00 UTC
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update-check:
|
|
runs-on: python-repositories-ci
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ secrets.CI_RUNNER_TOKEN }}
|
|
|
|
- name: Sync dependencies
|
|
env:
|
|
UV_LINK_MODE: copy
|
|
UV_INDEX_GITEA_USERNAME: ci-bot
|
|
UV_INDEX_GITEA_PASSWORD: ${{ secrets.CI_RUNNER_TOKEN }}
|
|
run: uv sync --all-extras
|
|
|
|
- name: Upgrade dependencies
|
|
env:
|
|
UV_INDEX_GITEA_USERNAME: ci-bot
|
|
UV_INDEX_GITEA_PASSWORD: ${{ secrets.CI_RUNNER_TOKEN }}
|
|
run: uv lock --upgrade
|
|
|
|
- name: Update pre-commit hook revs
|
|
env:
|
|
UV_INDEX_GITEA_USERNAME: ci-bot
|
|
UV_INDEX_GITEA_PASSWORD: ${{ secrets.CI_RUNNER_TOKEN }}
|
|
run: uv run pre-commit autoupdate
|
|
|
|
- name: Sync upgraded dependencies
|
|
env:
|
|
UV_LINK_MODE: copy
|
|
UV_INDEX_GITEA_USERNAME: ci-bot
|
|
UV_INDEX_GITEA_PASSWORD: ${{ secrets.CI_RUNNER_TOKEN }}
|
|
run: uv sync --all-extras
|
|
|
|
- name: Smoke check
|
|
run: |
|
|
uv run ruff check .
|
|
uv run ruff format --check .
|
|
uv run mypy .
|
|
|
|
- name: Commit and push changes
|
|
env:
|
|
API_URL: ${{ vars.API_URL }}
|
|
REPO_OWNER: ${{ github.repository_owner }}
|
|
REPO_NAME: ${{ github.event.repository.name }}
|
|
CI_RUNNER_TOKEN: ${{ secrets.CI_RUNNER_TOKEN }}
|
|
run: scripts/ci/create-deps-update-pr.sh
|