From 36d250a42046f5acfe9ee310702a328503aade2d Mon Sep 17 00:00:00 2001 From: Denis Granha Date: Fri, 23 Oct 2020 22:59:18 +0200 Subject: [PATCH] revert actions/cache to version 1.1.2 (#80) --- .github/workflows/build-test.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 96a9afb06..3659d4637 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -33,35 +33,35 @@ jobs: profile: minimal override: true - name: Cache cargo registry - uses: actions/cache@v2 + uses: actions/cache@v1.1.2 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-build-tests-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v2 + uses: actions/cache@v1.1.2 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-git-build-tests-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo build - uses: actions/cache@v2 + uses: actions/cache@v1.1.2 with: path: target key: ${{ runner.os }}-cargo-build-target-build-tests-${{ hashFiles('**/Cargo.lock') }} - name: Cache sccache linux if: matrix.platform == 'ubuntu-16.04' - uses: actions/cache@v2 + uses: actions/cache@v1.1.2 with: path: "/home/runner/.cache/sccache" key: ${{ runner.os }}-sccache-build-tests-${{ hashFiles('**/Cargo.lock') }} - name: Cache sccache MacOS if: matrix.platform == 'macos-latest' - uses: actions/cache@v2 + uses: actions/cache@v1.1.2 with: path: "/Users/runner/Library/Caches/Mozilla.sccache" key: ${{ runner.os }}-sccache-build-tests-${{ hashFiles('**/Cargo.lock') }} - name: Cache sccache Windows if: matrix.platform == 'windows-latest' - uses: actions/cache@v2 + uses: actions/cache@v1.1.2 with: path: "C:\\Users\\runneradmin\\AppData\\Local\\Mozilla\\sccache\\cache" key: ${{ runner.os }}-sccache-build-tests-${{ hashFiles('**/Cargo.lock') }}