We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcc4f6b commit 2e4a03bCopy full SHA for 2e4a03b
.github/workflows/test-coverage.yml
@@ -15,18 +15,13 @@ jobs:
15
runs-on: ubuntu-latest
16
steps:
17
- name: Check out datasette
18
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
19
- name: Set up Python
20
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v5
21
with:
22
- python-version: 3.9
23
- - uses: actions/cache@v2
24
- name: Configure pip caching
25
- with:
26
- path: ~/.cache/pip
27
- key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
28
- restore-keys: |
29
- ${{ runner.os }}-pip-
+ python-version: '3.12'
+ cache: 'pip'
+ cache-dependency-path: '**/setup.py'
30
- name: Install Python dependencies
31
run: |
32
python -m pip install --upgrade pip
0 commit comments