From c3df4fd59b22a13208c17088c5eed15884344b1a Mon Sep 17 00:00:00 2001 From: ugurcan Date: Sun, 13 Apr 2025 01:17:29 +0300 Subject: [PATCH 1/2] Update core.yml --- .github/workflows/core.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/core.yml b/.github/workflows/core.yml index 347b040b7..4bb70f260 100644 --- a/.github/workflows/core.yml +++ b/.github/workflows/core.yml @@ -73,12 +73,14 @@ jobs: version: latest - name: Setup ccache - uses: hendrikmuhs/ccache-action@v1.2 + uses: actions/cache@v3 with: - max-size: 2G - key: ${{ runner.os }} - restore-keys: ${{ runner.os }} - save: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} + path: | + ~/.ccache + ${{ github.workspace }}/.ccache + key: ${{ runner.os }}-ccache-${{ hashFiles('**/build.gradle') }}-${{ hashFiles('**/CMakeLists.txt') }} + restore-keys: | + ${{ runner.os }}-ccache- - name: Setup Android SDK uses: android-actions/setup-android@v3 From a26942bee7f2d7bf709ba0b69f89bfba178132d1 Mon Sep 17 00:00:00 2001 From: ugurcan Date: Sun, 13 Apr 2025 22:25:50 +0300 Subject: [PATCH 2/2] Update core.yml --- .github/workflows/core.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/core.yml b/.github/workflows/core.yml index 4bb70f260..f9a33600c 100644 --- a/.github/workflows/core.yml +++ b/.github/workflows/core.yml @@ -73,7 +73,7 @@ jobs: version: latest - name: Setup ccache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.ccache