From 6284a9251251b0290d93e72e625c5b7adb2859d9 Mon Sep 17 00:00:00 2001 From: pbio <10051819+paulbalaji@users.noreply.github.com> Date: Thu, 29 Jan 2026 12:54:08 +0000 Subject: [PATCH 1/2] ci: update CLI release test matrix to Node 24+ Prisma 7 requires Node 24, so removed Node 20-23 from the cross-platform release test matrix. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index adc898f6ea9..31c9af67f38 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -133,7 +133,7 @@ jobs: strategy: matrix: os: [depot-ubuntu-latest, depot-macos-latest, depot-windows-latest] - node-version: [20, 21, 22, 23, 24, 25] + node-version: [24, 25] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v6 From 43995e74808fe448fd7a80be40bb3cafba1c5914 Mon Sep 17 00:00:00 2001 From: pbio <10051819+paulbalaji@users.noreply.github.com> Date: Thu, 29 Jan 2026 12:59:14 +0000 Subject: [PATCH 2/2] ci: cache Foundry binaries to reduce flaky downloads --- .github/actions/setup-foundry/action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/actions/setup-foundry/action.yml b/.github/actions/setup-foundry/action.yml index 8b686bb6e1e..e94679b4368 100644 --- a/.github/actions/setup-foundry/action.yml +++ b/.github/actions/setup-foundry/action.yml @@ -9,6 +9,12 @@ runs: shell: bash run: echo "version=$(cat solidity/.foundryrc)" >> $GITHUB_OUTPUT + - name: Cache Foundry + uses: actions/cache@v5 + with: + path: ~/.foundry + key: foundry-${{ runner.os }}-${{ steps.foundry-version.outputs.version }} + - name: Install Foundry uses: foundry-rs/foundry-toolchain@v1 with: