From da3fff8736cf2ea974c4bff19cf7733bade4bb2d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 23:39:46 +0000 Subject: [PATCH] Bump actions/upload-artifact from 4 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...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/dotnet-build-and-test.yml | 2 +- .github/workflows/python-sample-validation.yml | 14 +++++++------- .github/workflows/python-test-coverage.yml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/dotnet-build-and-test.yml b/.github/workflows/dotnet-build-and-test.yml index 22047407a7..9e77a68e85 100644 --- a/.github/workflows/dotnet-build-and-test.yml +++ b/.github/workflows/dotnet-build-and-test.yml @@ -228,7 +228,7 @@ jobs: - name: Upload coverage report artifact if: matrix.targetFramework == env.COVERAGE_FRAMEWORK - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: CoverageReport-${{ matrix.os }}-${{ matrix.targetFramework }}-${{ matrix.configuration }} # Artifact name path: ./TestResults/Reports # Directory containing files to upload diff --git a/.github/workflows/python-sample-validation.yml b/.github/workflows/python-sample-validation.yml index 5f36af65cc..4a14e6b41b 100644 --- a/.github/workflows/python-sample-validation.yml +++ b/.github/workflows/python-sample-validation.yml @@ -46,7 +46,7 @@ jobs: cd scripts && uv run python -m sample_validation --subdir 01-get-started --save-report --report-name 01-get-started - name: Upload validation report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: always() with: name: validation-report-01-get-started @@ -89,7 +89,7 @@ jobs: cd scripts && uv run python -m sample_validation --subdir 02-agents --save-report --report-name 02-agents - name: Upload validation report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: always() with: name: validation-report-02-agents @@ -126,7 +126,7 @@ jobs: cd scripts && uv run python -m sample_validation --subdir 03-workflows --save-report --report-name 03-workflows - name: Upload validation report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: always() with: name: validation-report-03-workflows @@ -165,7 +165,7 @@ jobs: cd scripts && uv run python -m sample_validation --subdir 04-hosting --save-report --report-name 04-hosting - name: Upload validation report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: always() with: name: validation-report-04-hosting @@ -209,7 +209,7 @@ jobs: cd scripts && uv run python -m sample_validation --subdir 05-end-to-end --save-report --report-name 05-end-to-end - name: Upload validation report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: always() with: name: validation-report-05-end-to-end @@ -249,7 +249,7 @@ jobs: cd scripts && uv run python -m sample_validation --subdir autogen-migration --save-report --report-name autogen-migration - name: Upload validation report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: always() with: name: validation-report-autogen-migration @@ -295,7 +295,7 @@ jobs: cd scripts && uv run python -m sample_validation --subdir semantic-kernel-migration --save-report --report-name semantic-kernel-migration - name: Upload validation report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: always() with: name: validation-report-semantic-kernel-migration diff --git a/.github/workflows/python-test-coverage.yml b/.github/workflows/python-test-coverage.yml index a9acfba0de..98ee58b5ff 100644 --- a/.github/workflows/python-test-coverage.yml +++ b/.github/workflows/python-test-coverage.yml @@ -42,7 +42,7 @@ jobs: - name: Check coverage threshold run: python ${{ github.workspace }}/.github/workflows/python-check-coverage.py python-coverage.xml ${{ env.COVERAGE_THRESHOLD }} - name: Upload coverage report - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: path: | python/python-coverage.xml