From 4df8abce31fcb090cc13d5ada64aa78d5122aed8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 10 Sep 2026 01:28:54 +0000 Subject: [PATCH] Bump actions/upload-artifact from 5 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/python.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index c5864e0979e..c52b7c285d1 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -194,7 +194,7 @@ jobs: mv .coverage .coverage.${{ matrix.test_mode }} - name: Save Python Test Coverage as Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: .coverage.${{ matrix.test_mode }} include-hidden-files: true @@ -252,7 +252,7 @@ jobs: - name: Upload Coverage Report Artifact PR if: (github.repository_owner == 'apache') && (github.ref_name != 'main') - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: coverage.xml path: src/main/python/coverage.xml @@ -260,7 +260,7 @@ jobs: - name: Upload Coverage Report Artifact Main if: (github.repository_owner == 'apache') && (github.ref_name == 'main') - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: coverage.xml path: src/main/python/coverage.xml @@ -268,7 +268,7 @@ jobs: - name: Upload Coverage Report Artifact Fork if: (github.repository_owner != 'apache') - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: coverage.xml path: src/main/python/coverage.xml