From c30b8444f938ad9fbb21ea5566b03ad6e4bc7ee5 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Wed, 8 Jul 2026 20:13:43 +0530 Subject: [PATCH 1/2] chore: Update GitHub Actions versions in CI workflow Bump actions/checkout and actions/cache from v3 to v4. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a0f889..5012ca8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,10 +11,10 @@ jobs: name: Test Suite runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Cache dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cargo key: cargo-${{ hashFiles('**/Cargo.toml') }} @@ -23,7 +23,7 @@ jobs: cargo- - name: Cargo Target Cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: target key: cargo-target-${{ hashFiles('**/Cargo.toml') }} From e697ec5bf9a2e058a589c6c8b57e09f224c1740d Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Wed, 8 Jul 2026 20:15:53 +0530 Subject: [PATCH 2/2] chore: Bump Rust base image to 1.96.1 in Dockerfile Co-Authored-By: Claude Opus 4.8 (1M context) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fcfe67b..79a05e0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.87.0 AS chef +FROM rust:1.96.1 AS chef RUN cargo install cargo-chef WORKDIR app