From be3d2faef706bba77c126cd8b16ed542ef220e8c Mon Sep 17 00:00:00 2001 From: Myles Gray Date: Mon, 14 Nov 2022 13:20:17 +0000 Subject: [PATCH] Fixed indentation error on cache workflow --- .github/workflows/lint-and-test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint-and-test.yaml b/.github/workflows/lint-and-test.yaml index 32717f7..1cb4753 100644 --- a/.github/workflows/lint-and-test.yaml +++ b/.github/workflows/lint-and-test.yaml @@ -30,10 +30,10 @@ jobs: run: | python -m pip install --upgrade pipenv wheel - id: cache-pipenv - uses: actions/cache@v1 + uses: actions/cache@v3.0.11 with: - path: ~/.local/share/virtualenvs - key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }} + path: ~/.local/share/virtualenvs + key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }} - name: Install dependencies if: steps.cache-pipenv.outputs.cache-hit != 'true' run: |