diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8823c7ca2..b6b68c512 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -89,7 +89,7 @@ jobs: # https://github.com/actions/cache/blob/main/tips-and-workarounds.md#update-a-cache - name: Restore cached hypothesis directory id: restore-hypothesis-cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: .hypothesis/ key: cache-hypothesis-${{ runner.os }}-${{ github.run_id }} @@ -103,7 +103,7 @@ jobs: - name: Save cached hypothesis directory id: save-hypothesis-cache if: always() && steps.unit-test.outcome != 'skipped' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: .hypothesis/ key: cache-hypothesis-${{ runner.os }}-${{ github.run_id }}