From e0f72d2784447c15966fc6dd09d0f4641966fdd1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 12:18:49 +0000 Subject: [PATCH] Bump actions/upload-artifact from 4 to 5 in /.github/workflows Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/pytest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }}