update workflow actions to new versions
This commit is contained in:
parent
5d79c909eb
commit
0275d2949d
1 changed files with 5 additions and 3 deletions
8
.github/workflows/pytest.yml
vendored
8
.github/workflows/pytest.yml
vendored
|
|
@ -14,10 +14,12 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.11'
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
|
|
@ -30,7 +32,7 @@ jobs:
|
|||
pytest --cov=./ --cov-report=xml
|
||||
|
||||
- name: Save coverage report
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: coverage-report
|
||||
path: coverage.xml
|
||||
|
|
|
|||
Loading…
Reference in a new issue