diff --git a/.github/workflows/_lint.yml b/.github/workflows/_lint.yml index 5786893fd..260347379 100644 --- a/.github/workflows/_lint.yml +++ b/.github/workflows/_lint.yml @@ -52,7 +52,7 @@ jobs: - name: Get .mypy_cache to speed up mypy if: steps.changed-files.outputs.all - uses: actions/cache@v4 + uses: actions/cache@v5 env: SEGMENT_DOWNLOAD_TIMEOUT_MIN: "2" with: @@ -78,7 +78,7 @@ jobs: - name: Get .mypy_cache_test to speed up mypy if: steps.changed-files.outputs.all - uses: actions/cache@v4 + uses: actions/cache@v5 env: SEGMENT_DOWNLOAD_TIMEOUT_MIN: "2" with: diff --git a/.github/workflows/baseline.yml b/.github/workflows/baseline.yml index 1577d6cc7..1f1183b3f 100644 --- a/.github/workflows/baseline.yml +++ b/.github/workflows/baseline.yml @@ -30,7 +30,7 @@ jobs: - name: Run benchmarks run: OUTPUT=out/benchmark-baseline.json make -s benchmark - name: Save outputs - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: key: ${{ runner.os }}-benchmark-baseline-${{ env.SHA }} path: | diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index 526e4de56..aeb71fddf 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -30,7 +30,7 @@ jobs: - name: Install dependencies run: uv sync --group test - name: Download baseline - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: key: ${{ runner.os }}-benchmark-baseline restore-keys: |