File tree Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -20,16 +20,11 @@ jobs:
20
20
- name : Checkout
21
21
uses : actions/checkout@v4
22
22
- name : Setup Python
23
- uses : actions/setup-python@v2
23
+ uses : actions/setup-python@v4
24
24
with :
25
25
python-version : 3.9
26
- - name : Cache PyPI
27
- uses : actions/cache@v3
28
- with :
29
- key : pip-lint-${{ hashFiles('requirements-dev.txt') }}
30
- path : ~/.cache/pip
31
- restore-keys : |
32
- pip-lint-
26
+ cache : ' pip'
27
+ cache-dependency-path : ' **/requirements*.txt'
33
28
- name : Install dependencies
34
29
uses : py-actions/py-dependency-install@v4
35
30
with :
58
53
- name : Checkout
59
54
uses : actions/checkout@v4
60
55
- name : Set up Python ${{ matrix.python-version }}
61
- uses : actions/setup-python@v2
56
+ uses : actions/setup-python@v4
62
57
with :
63
58
python-version : ${{ matrix.python-version }}
59
+ cache : ' pip'
60
+ cache-dependency-path : ' **/requirements*.txt'
64
61
- name : Install dependencies
65
62
run : |
66
63
pip install --upgrade pip build twine
You can’t perform that action at this time.
0 commit comments