From 85cdd1e39f3fbe01b90098980c06e8c3c70dbe2f Mon Sep 17 00:00:00 2001 From: Andrea Cavalli Date: Wed, 4 May 2022 18:48:07 +0200 Subject: [PATCH] Update caches --- .github/workflows/platform_natives.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/platform_natives.yaml b/.github/workflows/platform_natives.yaml index 0073288..6c9c59d 100644 --- a/.github/workflows/platform_natives.yaml +++ b/.github/workflows/platform_natives.yaml @@ -81,33 +81,33 @@ jobs: uses: actions/cache@v2 with: path: /tmp/.buildx-cache - key: ${{ runner.os }}-buildx-cache-${{ env.SAFE_ARCH }}-${{ github.sha }} + key: ${{ runner.os }}-v2-buildx-cache-${{ env.SAFE_ARCH }}-${{ github.sha }} restore-keys: | - ${{ runner.os }}-buildx-cache-${{ env.SAFE_ARCH }}- + ${{ runner.os }}-v2-buildx-cache-${{ env.SAFE_ARCH }}- - name: Cache Maven uses: actions/cache@v2 with: path: ~/.m2/repository - key: ${{ runner.os }}-maven-${{ env.SAFE_ARCH }}-${{ hashFiles('**/pom.xml') }} + key: ${{ runner.os }}-v2-maven-${{ env.SAFE_ARCH }}-${{ hashFiles('**/pom.xml') }} restore-keys: | - ${{ runner.os }}-maven-${{ env.SAFE_ARCH }}- + ${{ runner.os }}-v2-maven-${{ env.SAFE_ARCH }}- - name: Cache packages cache uses: actions/cache@v2 with: path: ~/tdlight-java-natives/tdlight-java-natives/.cache - key: ${{ runner.os }}-packages-${{ env.SAFE_ARCH }}-${{ github.sha }} + key: ${{ runner.os }}-v2-packages-${{ env.SAFE_ARCH }}-${{ github.sha }} restore-keys: | - ${{ runner.os }}-packages-${{ env.SAFE_ARCH }}- + ${{ runner.os }}-v2-packages-${{ env.SAFE_ARCH }}- - name: Cache ccache uses: actions/cache@v2 with: path: ~/.ccache - key: ${{ runner.os }}-ccache-${{ env.SAFE_ARCH }}-${{ github.sha }} + key: ${{ runner.os }}-v2-ccache-${{ env.SAFE_ARCH }}-${{ github.sha }} restore-keys: | - ${{ runner.os }}-ccache-${{ env.SAFE_ARCH }}- + ${{ runner.os }}-v2-ccache-${{ env.SAFE_ARCH }}- - name: Build image if: matrix.usedocker == 'true'