Skip to content

Commit 6d89a28

Browse files
committed
fix: poetry lock
1 parent fcb066b commit 6d89a28

File tree

3 files changed

+40
-2
lines changed

3 files changed

+40
-2
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ updates:
3535
- package-ecosystem: "github-actions"
3636
directory: "/"
3737
schedule:
38-
interval: "weekly"
38+
interval: weekly
3939
open-pull-requests-limit: 10
4040
assignees:
4141
- thenativeweb/internal_dev
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Update Poetry Lock
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- 'pyproject.toml'
7+
8+
jobs:
9+
update-poetry-lock:
10+
runs-on: ubuntu-latest
11+
if: github.actor == 'dependabot[bot]'
12+
permissions:
13+
contents: write
14+
pull-requests: write
15+
steps:
16+
- uses: actions/checkout@v4
17+
with:
18+
ref: ${{ github.head_ref }}
19+
token: ${{ secrets.GITHUB_TOKEN }}
20+
21+
- name: Set up Python
22+
uses: actions/setup-python@v4
23+
with:
24+
python-version: '3.13'
25+
26+
- name: Install Poetry
27+
uses: snok/install-poetry@v1
28+
with:
29+
version: 1.6.1
30+
31+
- name: Update poetry.lock
32+
run: poetry lock
33+
34+
- name: Commit and push changes
35+
uses: stefanzweifel/git-auto-commit-action@v5
36+
with:
37+
commit_message: "chore: update poetry.lock"
38+
file_pattern: "poetry.lock"

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)