From 2ffdd71ac8df5146ba11d856ca00e115177171d0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Mar 2022 12:50:52 +0100 Subject: [PATCH] Bump actions/cache from 2.1.7 to 3 (#3620) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build.yml | 6 +++--- .github/workflows/test.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 624ce4636..16609e68c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,7 +37,7 @@ jobs: - name: Cache Qt id: cache-qt - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: "${{ github.workspace }}/qt/" key: ${{ runner.os }}-QtCache-${{ matrix.qt-version }} @@ -57,14 +57,14 @@ jobs: # WINDOWS - name: Cache conan packages part 1 if: startsWith(matrix.os, 'windows') - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: key: ${{ runner.os }}-conan-user-${{ hashFiles('**/conanfile.txt') }} path: ~/.conan/ - name: Cache conan packages part 2 if: startsWith(matrix.os, 'windows') - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: key: ${{ runner.os }}-conan-root-${{ hashFiles('**/conanfile.txt') }} path: C:/.conan/ diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4cace55a7..ce9910951 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: - name: Cache Qt id: cache-qt - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: ../Qt key: ${{ runner.os }}-QtCache-20201005