From 489934285350648b5a0c19ee54f4184f77856a1e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 00:36:30 +0000 Subject: [PATCH] ci(actions): 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/build.yml | 2 +- .github/workflows/licenses.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0156e7f..5257877 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -55,7 +55,7 @@ jobs: run: dotnet build CodexBarWin.csproj -c ${{ matrix.configuration }} -p:Platform=${{ matrix.platform }} -p:PublishReadyToRun=false --no-restore - name: Upload build artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: CodexBarWin-${{ matrix.platform }}-${{ matrix.configuration }} path: bin/${{ matrix.platform }}/${{ matrix.configuration }}/net10.0-windows10.0.19041.0/ diff --git a/.github/workflows/licenses.yml b/.github/workflows/licenses.yml index a9065ba..6a14951 100644 --- a/.github/workflows/licenses.yml +++ b/.github/workflows/licenses.yml @@ -70,7 +70,7 @@ jobs: shell: pwsh - name: Upload license report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: always() with: name: license-report diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ff6942f..08e68a7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -146,7 +146,7 @@ jobs: "$hash CodexBarWin-$version-$platform.msix" | Out-File -FilePath "CodexBarWin-$version-$platform.msix.sha256" -Encoding utf8NoBOM - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: release-${{ matrix.platform }} path: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5d8b896..e476465 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -58,7 +58,7 @@ jobs: run: dotnet test CodexBarWin.Tests.Unit/CodexBarWin.Tests.Unit.csproj -c ${{ matrix.configuration }} -p:Platform=${{ matrix.platform }} --no-build --verbosity normal --logger "trx;LogFileName=test-results.trx" --collect:"XPlat Code Coverage" - name: Upload test results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: always() with: name: test-results-${{ matrix.platform }}