From 806e58789d675496f25af7676e2b883a2372f6b6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 09:30:24 +0000 Subject: [PATCH] ci(deps): 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/ci.yml | 4 ++-- .github/workflows/nightly.yml | 2 +- .github/workflows/performance.yml | 4 ++-- .github/workflows/release.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4fb0e70..f6bfeaa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -90,14 +90,14 @@ jobs: } - name: Upload test results - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 if: always() with: name: test-results-${{ matrix.os }} path: '**/TestResults/**/*.trx' - name: Upload coverage reports - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 if: matrix.os == 'windows-latest' with: name: coverage-reports diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 0fdc1a4..5563bf2 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -147,7 +147,7 @@ jobs: cd ../.. - name: Upload nightly artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: nightly-${{ matrix.artifact_name }}-${{ github.run_number }} path: ./nightly-${{ matrix.artifact_name }}-${{ github.run_number }}.zip diff --git a/.github/workflows/performance.yml b/.github/workflows/performance.yml index 73f7fe6..7c3640b 100644 --- a/.github/workflows/performance.yml +++ b/.github/workflows/performance.yml @@ -60,7 +60,7 @@ jobs: --logger trx - name: Upload performance test results - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 if: always() with: name: performance-test-results @@ -96,7 +96,7 @@ jobs: -- --filter '*' --exporters json - name: Upload benchmark results - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 if: always() with: name: benchmark-results diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a7cec9d..420a9ec 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -167,7 +167,7 @@ jobs: cd ../.. - name: Upload artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.artifact_name }} path: ./${{ matrix.artifact_name }}.zip