Skip to content

Commit 56c9ccd

Browse files
committed
fix(deps): bump octocrab to 0.48.1 to fix macOS CI sandbox failure
The octocrab 0.48.0 build script called `cargo metadata` which attempted to download crates during the build. This failed in Bazel's darwin-sandbox because writes to ~/.cargo/registry are blocked. octocrab 0.48.1 includes the fix: "don't fetch dependencies" (#828) This resolves the "Test on macos-latest" CI failure: thread 'main' panicked at build.rs:15:10: failed to parse `cargo metadata`: Operation not permitted (os error 1) Cherry-picked from dependabot PR #242.
1 parent c86df2e commit 56c9ccd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tools/wizer_initializer/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/wizer_initializer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ tokio = { version = "1.48", features = ["full"] }
2424
chrono = { version = "0.4", features = ["serde"] }
2525
futures-util = "0.3"
2626
tempfile = "3.23"
27-
octocrab = { version = "0.48.0", features = ["stream"] }
27+
octocrab = { version = "0.48.1", features = ["stream"] }

0 commit comments

Comments
 (0)