From 659163a3cb3ecc76cb36b620d685d05ab8e7e031 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 17:57:11 +0000 Subject: [PATCH] build(deps): bump actions/upload-artifact from 4 to 5 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/test.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index b20b3fb6..dded982a 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -53,7 +53,7 @@ jobs: run: hatch run test:test - name: Upload coverage - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: coverage-unit-py${{ matrix.python-version }}-rs${{ matrix.rust-version }}-${{ matrix.os }} path: .coverage.* @@ -149,13 +149,13 @@ jobs: - name: Upload logs for debugging if: ${{ failure() }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: ${{ matrix.test-script }}-py${{ matrix.python-version }}-rs${{ matrix.rust-version }}-${{ matrix.os }} path: e2e-output - name: Upload coverage - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: coverage-e2e-${{ matrix.test-script }}-py${{ matrix.python-version }}-rs${{ matrix.rust-version }}-${{ matrix.os }} path: .coverage.* @@ -200,7 +200,7 @@ jobs: hatch run test:coverage report --fail-under=60 - name: Upload report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: path: htmlcov name: htmlcov