From b6413273f0233d72166f24f5c163279463e88b25 Mon Sep 17 00:00:00 2001 From: "Patrick J.P. Culp" Date: Tue, 4 Oct 2022 20:45:22 +0000 Subject: [PATCH] TEMPORARY COMMIT: don't use cache in actions --- .github/workflows/ci.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 83c1c229..ce78a754 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,15 +25,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: actions/cache@v3 - with: - path: | - .cargo - target - # you can edit the .github/cache_bust file if you need to clear the cache - key: ${{ hashFiles('.github/cache_bust') }}-${{ runner.os }}-build-${{ hashFiles('**/Cargo.lock') }} - restore-keys: | - ${{ hashFiles('.github/cache_bust') }}-${{ runner.os }}-build- - run: rustup update stable - run: make build