We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 070c32f commit 0b88583Copy full SHA for 0b88583
.github/workflows/main.yml
@@ -21,18 +21,13 @@ jobs:
21
- '3.10'
22
23
steps:
24
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
25
26
- - uses: actions/setup-python@v2
+ - uses: actions/setup-python@v3
27
with:
28
python-version: ${{ matrix.python-version }}
29
-
30
- - uses: actions/cache@v2
31
- with:
32
- path: ~/.cache/pip
33
- key: ${{ runner.os }}-pip-${{ hashFiles('requirements/*.txt') }}
34
- restore-keys: |
35
- ${{ runner.os }}-pip-
+ cache: 'pip'
+ cache-dependency-path: 'requirements/*.txt'
36
37
- name: Upgrade packaging tools
38
run: python -m pip install --upgrade pip setuptools virtualenv wheel
0 commit comments