We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cf4add commit 21acb74Copy full SHA for 21acb74
1 file changed
.github/workflows/pip_refresh.yml
@@ -0,0 +1,30 @@
1
+---
2
+# SPDX-FileCopyrightText: 2026 Joe Pitt
3
+#
4
+# SPDX-License-Identifier: GPL-3.0-only
5
+
6
+name: Update PIP Dependencies
7
+permissions:
8
+ contents: write
9
+on:
10
+ push:
11
+ branches-ignore:
12
+ - main
13
+jobs:
14
+ update:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout Project
18
+ uses: actions/checkout@v6
19
20
+ - name: Update Dependencies
21
+ run: pip install --no-cache-dir --target=./lib/ --upgrade -r requirements.txt
22
23
+ - name: Commit Updates
24
+ uses: ryancyq/github-signed-commit@v1
25
+ env:
26
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27
+ with:
28
+ files: |
29
+ lib/**
30
+ commit-message: "chore(deps): updated pip modules"
0 commit comments