From b1ae428e23fe27d426ff21bc9048c73006b70a75 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 9 Dec 2025 09:08:47 +0000 Subject: [PATCH] :arrow_up: actions(deps): Bump actions/upload-artifact from 3 to 5 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...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/ci.yml | 4 ++-- .github/workflows/test.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 35a1250..7be1fdd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -192,7 +192,7 @@ jobs: - name: 📄 Upload Security Report if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: security-report path: bandit-report.json @@ -227,7 +227,7 @@ jobs: twine check dist/* - name: 📦 Upload Build Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: dist-packages path: dist/ diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6c94477..c03c97d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -51,7 +51,7 @@ jobs: - name: Upload test results if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v5 with: name: test-results-${{ matrix.python-version }} path: |