From 50cb978252d97fa71470b14eb480317952fc03f6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 29 May 2026 21:33:15 +0000 Subject: [PATCH 1/2] Bump tar in /rust in the cargo group across 1 directory Bumps the cargo group with 1 update in the /rust directory: [tar](https://github.com/composefs/tar-rs). Updates `tar` from 0.4.45 to 0.4.46 - [Release notes](https://github.com/composefs/tar-rs/releases) - [Commits](https://github.com/composefs/tar-rs/compare/0.4.45...0.4.46) --- updated-dependencies: - dependency-name: tar dependency-version: 0.4.46 dependency-type: direct:production dependency-group: cargo ... Signed-off-by: dependabot[bot] --- rust/Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 1676f2f91..8d8efffca 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -1088,9 +1088,9 @@ dependencies = [ [[package]] name = "tar" -version = "0.4.45" +version = "0.4.46" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22692a6476a21fa75fdfc11d452fda482af402c008cdbaf3476414e122040973" +checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840" dependencies = [ "filetime", "libc", From acb7ce911a27e62ed088e360ead1fdc1d19a22bc Mon Sep 17 00:00:00 2001 From: Stephen Toub Date: Sat, 30 May 2026 08:48:07 -0400 Subject: [PATCH 2/2] Make Rust Windows cache non-blocking Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/rust-sdk-tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/rust-sdk-tests.yml b/.github/workflows/rust-sdk-tests.yml index 23e686eb7..f75a5d6a2 100644 --- a/.github/workflows/rust-sdk-tests.yml +++ b/.github/workflows/rust-sdk-tests.yml @@ -159,6 +159,9 @@ jobs: toolchain: "1.94.0" - uses: Swatinem/rust-cache@v2 + # Cache is only an optimization; the Windows bundled smoke test should + # not fail when rust-cache's post-job save flakes after a successful build. + continue-on-error: ${{ runner.os == 'Windows' }} with: workspaces: "rust" key: bundled-cli