From 77e3b600e833d5a44253b8eb41e6a02629c283a5 Mon Sep 17 00:00:00 2001 From: Arun Sharma Date: Tue, 28 Jul 2026 07:59:18 -0700 Subject: [PATCH 1/2] ci: use rust-cache --- .github/workflows/build.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fa32e9a..fb82c08 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -89,15 +89,10 @@ jobs: - name: Install Rust stable uses: dtolnay/rust-toolchain@stable - - name: Cache Tauri CLI - id: cache-tauri-cli - uses: actions/cache@v4 + - name: Rust cache + uses: Swatinem/rust-cache@v2 with: - path: | - ~/.cargo/bin/cargo-tauri* - ~/.cargo/registry - ~/.cargo/git - key: ${{ runner.os }}-${{ matrix.target }}-cargo-tauri-v2-${{ hashFiles('src-tauri/Cargo.lock') }} + workspaces: './src-tauri -> target' - name: Install Tauri CLI (cargo plugin) shell: bash From e706b585852ce681ab473774faa0ca98fbce4c86 Mon Sep 17 00:00:00 2001 From: Arun Sharma Date: Tue, 28 Jul 2026 12:16:46 -0700 Subject: [PATCH 2/2] Update icebug to 13.0 --- scripts/download_icebug.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/download_icebug.sh b/scripts/download_icebug.sh index 2426aa3..4629c51 100755 --- a/scripts/download_icebug.sh +++ b/scripts/download_icebug.sh @@ -7,7 +7,7 @@ PROJECT_DIR="$(cd "$SCRIPT_DIR/.." && pwd)" REPOSITORY="${ICEBUG_GITHUB_REPOSITORY:-Ladybug-Memory/icebug}" TARGET_DIR="${ICEBUG_TARGET_DIR:-$PROJECT_DIR/src-tauri/icebug}" -VERSION="${ICEBUG_VERSION:-12.9}" +VERSION="${ICEBUG_VERSION:-13.0}" OS="$(uname -s)" ARCH="$(uname -m)"