From a4ff116382a6ad8acb3d489bf038a43ce7ad10aa Mon Sep 17 00:00:00 2001 From: Stepan Usatiuk Date: Mon, 15 Jul 2024 23:52:29 +0200 Subject: [PATCH] CI: actually update ccache cache --- .github/workflows/ficus.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ficus.yml b/.github/workflows/ficus.yml index 71b7b2f68..8597bba9d 100644 --- a/.github/workflows/ficus.yml +++ b/.github/workflows/ficus.yml @@ -28,7 +28,10 @@ jobs: uses: actions/cache@v4 with: path: ~/.cache/ccache - key: ${{ runner.os }}-ccache + key: ${{ runner.os }}-ccache-${{ github.run_id }}-${{ github.run_attempt }} + restore-keys: | + ${{ runner.os }}-ccache-${{ github.run_id }}-${{ github.run_attempt }} + ${{ runner.os }}-ccache- - name: Add ccache to path run: echo "/usr/lib/ccache" >> $GITHUB_PATH