Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .changepacks/changepack_log_t_nobxo8mS_H6-IR3WNuC.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"changes":{"crates/python/Cargo.toml":"Patch","crates/node/Cargo.toml":"Patch","crates/rust/Cargo.toml":"Patch","crates/cli/Cargo.toml":"Patch","crates/core/Cargo.toml":"Patch","bridge/python/pyproject.toml":"Patch","bridge/node/package.json":"Patch","crates/github/Cargo.toml":"Patch"},"note":"Fix action issue","date":"2026-06-06T11:19:45.059714300Z"}
22 changes: 11 additions & 11 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ on:
branches:
- main
paths-ignore:
- '**/*.md'
- "**/*.md"
- LICENSE
- '**/*.gitignore'
- "**/*.gitignore"
- .editorconfig
pull_request: null

Expand All @@ -26,10 +26,10 @@ jobs:
fail-fast: false
matrix:
python-version:
- '3.11'
- '3.12'
- '3.13'
- '3.14'
- "3.11"
- "3.12"
- "3.13"
- "3.14"
platform:
- ubuntu-latest
- windows-latest
Expand All @@ -44,7 +44,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v8.1.0
uses: astral-sh/setup-uv@v8.2.0
with:
enable-cache: false
- name: Install maturin
Expand Down Expand Up @@ -153,8 +153,8 @@ jobs:
runs-on: ${{ matrix.settings.host }}
env:
DEBUG: napi:*
MACOSX_DEPLOYMENT_TARGET: '10.13'
CARGO_INCREMENTAL: '1'
MACOSX_DEPLOYMENT_TARGET: "10.13"
CARGO_INCREMENTAL: "1"
steps:
- uses: actions/checkout@v6
- name: Setup node
Expand Down Expand Up @@ -345,7 +345,7 @@ jobs:
- name: Generate artifact attestation
uses: actions/attest-build-provenance@v4
with:
subject-path: 'wheels-*/*'
subject-path: "wheels-*/*"
- name: Publish to PyPI
uses: PyO3/maturin-action@main
env:
Expand All @@ -359,7 +359,7 @@ jobs:
uses: owjs3901/upload-github-release-asset@main
with:
upload_url: ${{ fromJson(needs.changepacks.outputs.release_assets_urls)['bridge/python/pyproject.toml'] }}
asset_path: '*/*.whl'
asset_path: "*/*.whl"

upload-assets:
needs: changepacks
Expand Down
80 changes: 40 additions & 40 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ categories = ["development-tools"]
# Internal — `version` is required so `cargo publish` can resolve path
# dependencies against crates.io. When bumping any crate version, remember
# to update these entries in lockstep.
dependency-check-updates-core = { path = "crates/core", version = "0.1.13" }
dependency-check-updates-node = { path = "crates/node", version = "0.1.13" }
dependency-check-updates-rust = { path = "crates/rust", version = "0.1.13" }
dependency-check-updates-python = { path = "crates/python", version = "0.1.13" }
dependency-check-updates-github = { path = "crates/github", version = "0.1.13" }
dependency-check-updates = { path = "crates/cli", version = "0.1.13" }
dependency-check-updates-core = { path = "crates/core", version = "0.1.14" }
dependency-check-updates-node = { path = "crates/node", version = "0.1.14" }
dependency-check-updates-rust = { path = "crates/rust", version = "0.1.14" }
dependency-check-updates-python = { path = "crates/python", version = "0.1.14" }
dependency-check-updates-github = { path = "crates/github", version = "0.1.14" }
dependency-check-updates = { path = "crates/cli", version = "0.1.14" }

# External
clap = { version = "4.6", features = ["derive"] }
Expand Down
Loading
Loading