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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions:
jobs:
release-plz:
if: ${{ github.repository_owner == 'drivercraft' && (github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success') }}
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
Copy link

Copilot AI Jan 29, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The release-plz job is being changed to use ubuntu-22.04, but the release-plz-pr job on line 45 still uses ubuntu-latest. Since both jobs use the release-plz action and likely have similar dependencies (both reference the same install-rust and setup-libudenv steps), consider whether the release-plz-pr job should also be pinned to ubuntu-22.04 for consistency. If there's a specific reason only one job needs pinning, that's fine, but this inconsistency should be intentional.

Copilot uses AI. Check for mistakes.
steps:
- &checkout
name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion ostool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
name = "ostool"
readme = "../README.md"
repository = "https://github.com/drivercraft/ostool"
version = "0.8.9"
version = "0.8.10"
Copy link

Copilot AI Jan 29, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR title indicates this change is only about updating the release-plz job's runtime environment to ubuntu-22.04. However, this PR also includes a version bump from 0.8.9 to 0.8.10. The version bump should either be mentioned in the PR title/description, or if it's unrelated to the workflow change, it should be in a separate PR for clarity.

Copilot uses AI. Check for mistakes.

[package.metadata.binstall]
bin-dir = "{ name }-{ target }-v{ version }/{ bin }{ binary-ext }"
Expand Down