File tree Expand file tree Collapse file tree 1 file changed +6
-13
lines changed
Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Original file line number Diff line number Diff line change @@ -18,23 +18,16 @@ jobs:
1818 runs-on : ubuntu-latest
1919
2020 steps :
21- - uses : actions/checkout@v2
21+ - uses : actions/checkout@v4
2222 - name : Set up Python 3.11
23- uses : actions/setup-python@v2
23+ uses : actions/setup-python@v5
2424 with :
2525 python-version : 3.11
2626
27- - uses : actions/cache@v2
27+ - uses : actions/cache@v4
2828 with :
2929 path : ~/.cache/pip
30- key : ${{ runner.os }}-pip-${{ hashFiles('**/test_requirements.txt') }}
31- restore-keys : |
32- ${{ runner.os }}-pip-
33-
34- - uses : actions/cache@v2
35- with :
36- path : ~/.cache/pip
37- key : ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
30+ key : ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
3831 restore-keys : |
3932 ${{ runner.os }}-pip-
4033
7467 permissions :
7568 id-token : write # IMPORTANT: this permission is mandatory for trusted publishing
7669 steps :
77- - uses : actions/checkout@v2
70+ - uses : actions/checkout@v4
7871 - name : Set up Python 3.11
79- uses : actions/setup-python@v2
72+ uses : actions/setup-python@v5
8073 with :
8174 python-version : 3.11
8275 - name : build package
You can’t perform that action at this time.
0 commit comments