From 3658b8130d216805f8eefc3af6da60dace9d0b40 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Feb 2021 15:36:38 +0000 Subject: [PATCH] Update actions/cache requirement to v2.1.4 (#2441) --- .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 377f107e0..fdcaff30e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,7 +29,7 @@ jobs: - name: Cache Qt id: cache-qt - uses: actions/cache@v2 + uses: actions/cache@v2.1.4 with: path: ../Qt key: ${{ runner.os }}-QtCache-${{ matrix.qt-version }}-20210109 @@ -59,14 +59,14 @@ jobs: # WINDOWS - name: Cache conan if: startsWith(matrix.os, 'windows') - uses: actions/cache@v1 + uses: actions/cache@v2.1.4 with: key: ${{ runner.os }}-conan-root-${{ hashFiles('**/conanfile.txt') }} path: ~/.conan - name: Cache conan packages if: startsWith(matrix.os, 'windows') - uses: actions/cache@v1 + uses: actions/cache@v2.1.4 with: key: ${{ runner.os }}-conan-pkg-${{ hashFiles('**/conanfile.txt') }} path: C:/.conan/ diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a8a2ac27b..ea0c7adc0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: - name: Cache Qt id: cache-qt - uses: actions/cache@v2 + uses: actions/cache@v2.1.4 with: path: ../Qt key: ${{ runner.os }}-QtCache-20201005