From a045d26f052866fb26c3f934eadc816dbdeac192 Mon Sep 17 00:00:00 2001 From: "Echo J." Date: Mon, 30 Mar 2026 08:02:04 +0000 Subject: [PATCH] CI: Fix the ccache path (and re-add cache key fallback) --- .github/workflows/build-linux.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 36c2deb84..d5d0369cb 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -36,8 +36,9 @@ jobs: - name: Restore ccache uses: actions/cache@v4 with: - path: ~/.ccache + path: ${{ runner.temp }}/ccache key: ${{ runner.os }}-ccache-${{ hashFiles('**/meson.build') }} + restore-keys: ${{ runner.os }}-ccache- - name: Restore meson cache uses: actions/cache@v4