From dd11a5a5a4c8b6f337775b36fb408d59bd6f01f0 Mon Sep 17 00:00:00 2001 From: Mathias Brossard Date: Fri, 4 Aug 2023 18:21:59 -0500 Subject: [PATCH] Github Actions: Update to actions/cache@v3 --- .github/workflows/linux.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 8b2e74b62..3ed066072 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -26,7 +26,8 @@ jobs: restore-keys: ${{ runner.os }}-${{ env.cache-name }} - name: Cache Python modules - uses: actions/cache@v2 + id: cache-python + uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} @@ -65,7 +66,7 @@ jobs: - name: Cache CCache id: ccache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: .ccache key: ${{ runner.os }}-ccache-${{ hashFiles('log.txt') }}