Skip to content

Commit 03229a2

Browse files
authored
feat: update dependencies (#46)
1 parent 8349f66 commit 03229a2

File tree

4 files changed

+92
-94
lines changed

4 files changed

+92
-94
lines changed

.github/workflows/qualify.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
- synchronize
1111
- labeled
1212
- unlabeled
13+
- edited
1314
branches:
1415
- main
1516

@@ -38,11 +39,16 @@ jobs:
3839
uses: actions/checkout@v4
3940
with:
4041
fetch-depth: 0
41-
ref: ${{ github.sha }}
42+
ref: main
4243

43-
- name: Force correct release branch on workflow sha
44+
- name: Create fake commit with PR title
4445
run: |
45-
git checkout -B ${{ github.ref_name }} ${{ github.sha }}
46+
git config --global user.name '${{ steps.app-token.outputs.app-slug }}[bot]'
47+
git config --global user.email '${{ steps.get-user-id.outputs.user-id }}+${{ steps.app-token.outputs.app-slug }}[bot]@users.noreply.github.com'
48+
git switch -c temp-${{ github.run_id }}
49+
touch temp.txt
50+
git add temp.txt
51+
git commit -m "${{ github.event.pull_request.title }}"
4652
4753
- name: Install the latest version of uv
4854
uses: astral-sh/setup-uv@v5

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
5656
- name: Update version and changelogs
5757
id: semantic-release
58-
uses: python-semantic-release/python-semantic-release@v9.16.0
58+
uses: python-semantic-release/python-semantic-release@v9.16.1
5959
with:
6060
build: false
6161
changelog: true
@@ -81,7 +81,7 @@ jobs:
8181
- name: Publish package distributions to GitHub Releases
8282
if: steps.semantic-release.outputs.released == 'true'
8383
id: publish-dist
84-
uses: python-semantic-release/publish-action@v9.16.0
84+
uses: python-semantic-release/publish-action@v9.16.1
8585
with:
8686
github_token: ${{ steps.app-token.outputs.token }}
8787
tag: ${{ steps.semantic-release.outputs.tag }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ requires-python = ">=3.10"
1111
dependencies = [
1212
"mkdocstrings==0.27.0",
1313
"mkdocstrings-python==1.13.0",
14-
"charset-normalizer==3.3.2",
14+
"charset-normalizer==3.4.1",
1515
"tree-sitter==0.23.2",
1616
"tree-sitter-matlab==1.0.3",
1717
]

0 commit comments

Comments
 (0)