Skip to content

uv lock update

uv lock update #1

Workflow file for this run

# Copyright © Michal Čihař <michal@weblate.org>
#
# SPDX-License-Identifier: CC0-1.0
# This file is maintained in https://github.com/WeblateOrg/meta/
name: uv lock update
on:
push:
branches:
- renovate/**
paths:
- pyproject.toml
- .github/workflows/uv-upgrade.yml
schedule:
- cron: 30 6 * * 0
workflow_dispatch:
permissions:
contents: read
jobs:
uv-update:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.WEBLATE_CI_TOKEN }}
- uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: ''
cache-suffix: 3.13
- name: Install apt dependencies
run: sudo ./ci/apt-install
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.13
- name: Lockfile maintenance
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
run: uv lock --upgrade --no-sources
- run: uv sync --all-extras --no-sources
- name: Update current branch
if: github.ref != 'refs/heads/main'
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: 'chore(deps): update lockfile'
- name: Create Pull Request
id: cpr
if: github.ref == 'refs/heads/main'
uses: peter-evans/create-pull-request@v7
with:
branch: create-pull-request/yarn-update
title: 'chore(deps): update lockfile'
commit-message: 'chore(deps): update lockfile'
token: ${{ secrets.WEBLATE_CI_TOKEN }}
labels: |
dependencies
- name: Enable Pull Request Automerge
if: github.ref == 'refs/heads/main' && steps.cpr.outputs.pull-request-operation != 'none'
run: gh pr merge --rebase --auto "${{ steps.cpr.outputs.pull-request-number }}"
env:
GH_TOKEN: ${{ secrets.WEBLATE_CI_TOKEN }}