ci: generate refreshed uv lock artifact

This commit is contained in:
Normann
2026-08-21 01:11:18 +02:00
parent b461dd7551
commit e945462d78
+27
View File
@@ -0,0 +1,27 @@
name: Refresh uv lock artifact
on:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
lock:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: "3.13.15"
- name: Install uv
run: python -m pip install --disable-pip-version-check uv
- name: Regenerate lockfile
run: uv lock
- name: Upload lockfile
uses: actions/upload-artifact@v7
with:
name: refreshed-uv-lock
path: uv.lock