From 6c57980a70625e7204b83fbeef448b4de9b87e7c Mon Sep 17 00:00:00 2001 From: Nicholas Lambourne Date: Wed, 14 Feb 2024 21:08:49 +1000 Subject: [PATCH] remove cache --- .github/workflows/linting.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index bbe5c18..55fbb40 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -47,7 +47,7 @@ jobs: - name: Set Up Python Environment uses: actions/setup-python@v5 with: - python-version: "3.11" + python-version: "3.12" - name: Install Poetry uses: snok/install-poetry@v1 @@ -55,15 +55,15 @@ jobs: virtualenvs-create: true virtualenvs-in-project: true - - name: Load Cached venv - id: cached-poetry-dependencies - uses: actions/cache@v4 - with: - path: .venv - key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} + # - name: Load Cached venv + # id: cached-poetry-dependencies + # uses: actions/cache@v4 + # with: + # path: .venv + # key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} - name: Install Dependencies - if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' + # if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' run: poetry install --no-interaction --no-root --only dev