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: 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