Skip to content

Commit

Permalink
Use full python version in cache-key
Browse files Browse the repository at this point in the history
  • Loading branch information
Daverball committed Dec 13, 2024
1 parent ce6467c commit 83657c0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
id: setup-python
with:
python-version: "${{ matrix.python-version }}"
- uses: actions/cache@v4
Expand All @@ -50,7 +51,7 @@ jobs:
path: |
~/.local
.venv
key: ${{ hashFiles('**/poetry.lock') }}-${{ matrix.python-version }}-9
key: ${{ hashFiles('**/poetry.lock') }}-${{ steps.setup-python.outputs.python-version }}-9
- name: Install Poetry
uses: snok/install-poetry@v1
with:
Expand Down

0 comments on commit 83657c0

Please sign in to comment.