From d47997c5eaea7c966186f064ba7e70c372f3edd7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 08:01:20 +0000 Subject: [PATCH] Bump actions/upload-artifact from 5 to 6 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3fae428..7bc6055 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,7 +51,7 @@ jobs: - name: '[Ubuntu] Upload Artifact' if: matrix.os == 'ubuntu-latest' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ${{ env.PROJECT_NAME }}-ci-${{ github.run_number }} path: | @@ -76,7 +76,7 @@ jobs: - name: '[Windows] Upload test coverage report' if: matrix.os == 'windows-latest' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ${{ env.PROJECT_NAME }}-coverage-ci-${{ github.run_number }} path: coveragereport/ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ae702a0..19ff1f7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -97,7 +97,7 @@ jobs: - name: 'Upload test coverage report' continue-on-error: true - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ${{ env.PROJECT_NAME }}.${{ github.event.inputs.new_package_version }}-coverage-${{ env.GITHUB_REF_SLUG }}-${{ github.run_number }} path: coveragereport/ @@ -108,7 +108,7 @@ jobs: dotnet pack -c Release --no-build src/${{ env.PROJECT_NAME }}/${{ env.PROJECT_NAME }}.csproj --include-symbols -o ${{ env.ARTIFACT_DIR }} - name: Upload Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ${{ env.PROJECT_NAME }}.${{ github.event.inputs.new_package_version }}-${{ env.GITHUB_REF_SLUG }}-${{ github.run_number }} path: |