Skip to content

Commit

Permalink
Fix cached venv Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
devon-mar committed Jan 18, 2024
1 parent 05e7f76 commit db06b6f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.11"

- name: Install poetry
uses: snok/[email protected]
Expand All @@ -29,7 +29,7 @@ jobs:
uses: actions/cache@v3
with:
path: .venv
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }}
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock', '.github/workflows/ci.yml') }}

- name: Run poetry install
run: poetry install
Expand All @@ -56,7 +56,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.11"

- name: Install poetry
uses: snok/[email protected]
Expand All @@ -69,7 +69,7 @@ jobs:
uses: actions/cache@v3
with:
path: .venv
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }}
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock', '.github/workflows/ci.yml') }}

- name: Run poetry install
run: poetry install
Expand Down

0 comments on commit db06b6f

Please sign in to comment.