-
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (27 loc) · 684 Bytes
/
pip_refresh.yml
File metadata and controls
30 lines (27 loc) · 684 Bytes
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
---
# SPDX-FileCopyrightText: 2026 Joe Pitt
#
# SPDX-License-Identifier: GPL-3.0-only
name: Update PIP Dependencies
permissions:
contents: write
on:
push:
branches-ignore:
- main
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v6
- name: Update Dependencies
run: pip install --no-cache-dir --target=./lib/ --upgrade -r requirements.txt
- name: Commit Updates
uses: ryancyq/github-signed-commit@v1
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: |
lib/**
commit-message: "chore(deps): updated pip modules"