From 8fe1d18fb6b7a72e49349870fcb8761a119b8eef Mon Sep 17 00:00:00 2001 From: Tifa <62847935+Tiphereth-A@users.noreply.github.com> Date: Tue, 11 Feb 2025 17:50:06 +0800 Subject: [PATCH] chore: fix actions/cache version https://github.com/actions/cache/issues/1541 --- .github/workflows/verify.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 41bed991f..af3d1b436 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -107,7 +107,7 @@ jobs: - name: Restore cached results if: ${{ !inputs.ignore_prev_result }} - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v4.1.2 id: restore-cached-results with: path: ${{github.workspace}}/merged-result.json @@ -244,7 +244,7 @@ jobs: write-summary: true - name: Save result if: ${{ contains(fromJSON('["push", "workflow_dispatch"]'), github.event_name) }} - uses: actions/cache/save@v4 + uses: actions/cache/save@v4.1.2 with: path: ${{github.workspace}}/merged-result.json key: ${{ runner.os }}-verify-result-${{ github.sha }}