From 0f110c12c57a74388a5c9f730192fe7badf289fb Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Fri, 1 Mar 2024 17:41:29 +0100 Subject: .github/workflows/ci.yml: fix cache location --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4aa6d8acc..3c02a24d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: - name: test build cache uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 with: - path: /syzkaller/.cache + path: /root/.cache key: ${{ runner.os }}-go-test-build-${{ steps.get-date.outputs.date }} #always miss and upload fresh item restore-keys: ${{ runner.os }}-go-test-build- #read the freshest available after miss @@ -131,7 +131,7 @@ jobs: - name: test race cache uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 with: - path: /syzkaller/.cache + path: /root/.cache key: ${{ runner.os }}-go-test-race-${{ steps.get-date.outputs.date }} #always miss and upload fresh item restore-keys: ${{ runner.os }}-go-test-race- #read the freshest available after miss -- cgit mrf-deployment