-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (33 loc) · 1.03 KB
/
lockfiles.yaml
File metadata and controls
42 lines (33 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Update Dependencies
on:
# Allow API to be hit to trigger workflow.
workflow_dispatch:
# Every Monday at 1PM UTC (7AM EST)
schedule:
- cron: "0 11 * * 1"
jobs:
update-lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- uses: actions/setup-python@v6
with:
python-version-file: .python-version
- name: Update lockfile
run: uv lock --upgrade
- name: Create Pull Request
uses: peter-evans/create-pull-request@v8
with:
commit-message: "chore: update dependencies via uv lock"
title: "chore: update dependencies"
body: |
Automated dependency update via `uv lock --upgrade`.
Review the changes to `uv.lock` and ensure all tests pass before merging.
branch: automated-dependency-update
delete-branch: true
labels: dependencies