Skip to content

Commit be7154b

Browse files
committed
fix: workflow
1 parent 89d74ba commit be7154b

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

Diff for: .github/workflows/pythonapp.yml

+5-11
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,14 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v4
1212
with:
1313
submodules: true
14-
- name: Set up Python 3.7
15-
uses: actions/setup-python@v1
14+
- name: Set up Python 3.10
15+
uses: actions/setup-python@v5
1616
with:
17-
python-version: 3.7
18-
- name: Cache dependencies
19-
uses: actions/cache@v1
20-
with:
21-
path: ~/.cache/pip
22-
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
23-
restore-keys: |
24-
${{ runner.os }}-pip-
17+
python-version: 3.10
18+
cache: pip
2519
- name: Install dependencies
2620
run: |
2721
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)