Skip to content

Commit 55625e6

Browse files
Merge origin/main into update
2 parents 7548412 + be60768 commit 55625e6

File tree

2 files changed

+18
-21
lines changed

2 files changed

+18
-21
lines changed

.github/dependabot.yml

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,24 @@ updates:
88
- package-ecosystem: "cargo"
99
directory: "/"
1010
schedule:
11-
interval: "weekly"
11+
interval: "daily"
1212
groups:
13-
rust-production:
14-
dependency-type: "production"
15-
rust-development:
16-
dependency-type: "development"
13+
rust:
14+
patterns:
15+
- "*"
1716
- package-ecosystem: "github-actions"
1817
directory: "/"
1918
schedule:
20-
interval: "weekly"
19+
interval: "daily"
2120
groups:
22-
actions-production:
23-
dependency-type: "production"
24-
actions-development:
25-
dependency-type: "development"
26-
- package-ecosystem: "pip"
21+
actions:
22+
patterns:
23+
- "*"
24+
- package-ecosystem: "uv"
2725
directory: "/"
2826
schedule:
29-
interval: "weekly"
27+
interval: "daily"
3028
groups:
31-
python-production:
32-
dependency-type: "production"
33-
python-development:
34-
dependency-type: "development"
29+
python:
30+
patterns:
31+
- "*"

.github/workflows/version.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
ref: version-${{ needs.bump.outputs.version }}
6666
- uses: actions/checkout@v4
6767
if: ${{ needs.bump.result == 'skipped' }}
68-
- uses: PyO3/[email protected].0
68+
- uses: PyO3/[email protected].1
6969
with:
7070
target: ${{ matrix.target }}
7171
manylinux: auto
@@ -91,7 +91,7 @@ jobs:
9191
if: ${{ needs.bump.result == 'skipped' }}
9292
- name: Setup QEMU
9393
uses: docker/setup-qemu-action@v3
94-
- uses: PyO3/[email protected].0
94+
- uses: PyO3/[email protected].1
9595
with:
9696
manylinux: auto
9797
command: build
@@ -114,7 +114,7 @@ jobs:
114114
ref: version-${{ needs.bump.outputs.version }}
115115
- uses: actions/checkout@v4
116116
if: ${{ needs.bump.result == 'skipped' }}
117-
- uses: PyO3/[email protected].0
117+
- uses: PyO3/[email protected].1
118118
with:
119119
command: build
120120
args: --release -o dist --find-interpreter
@@ -136,7 +136,7 @@ jobs:
136136
ref: version-${{ needs.bump.outputs.version }}
137137
- uses: actions/checkout@v4
138138
if: ${{ needs.bump.result == 'skipped' }}
139-
- uses: PyO3/[email protected].0
139+
- uses: PyO3/[email protected].1
140140
with:
141141
command: build
142142
target: universal2-apple-darwin
@@ -158,7 +158,7 @@ jobs:
158158
pattern: wheels-*
159159
merge-multiple: true
160160
- name: Publish to PyPI
161-
uses: PyO3/[email protected].0
161+
uses: PyO3/[email protected].1
162162
env:
163163
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
164164
with:

0 commit comments

Comments
 (0)