diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index efe3792..9fc3a47 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -45,7 +45,7 @@ jobs: python -m pytest tests/ -v -rP --doctest-modules --junitxml=junit/test-results-${{ matrix.os }}-${{ matrix.python-version }}.xml --cov-report term-missing --cov-fail-under=80 --cov=lessons --cov-report html:test-coverage-${{ matrix.os }}-${{ matrix.python-version }}.html # yamllint enable rule:line-length - name: Upload pytest test artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: # Name of the artifact to upload. # Optional. Default is 'artifact' @@ -59,7 +59,7 @@ jobs: # the artifact does not exist. Optional. Default is 'false' overwrite: false - name: Upload pytest coverage artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: pytest-coverage-${{ matrix.os }}-${{ matrix.python-version }}