From 310668a0226beb8e665d44a84d90a64e3bed93d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 06:53:13 +0000 Subject: [PATCH] ci(deps): Bump actions/upload-artifact from 4 to 5 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/coverage.yml | 2 +- .github/workflows/performance-analyzer.yml | 2 +- .github/workflows/release.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a59c1b4..c09fb54 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,7 +53,7 @@ jobs: fail-on-error: true - name: Upload test results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: always() with: name: test-results @@ -126,7 +126,7 @@ jobs: dotnet pack Iso20022Library.Application/Iso20022Library.Application.csproj --no-restore --configuration Release --output ./packages /p:Version=$VERSION - name: Upload NuGet packages - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: nuget-packages-v${{ steps.gitversion.outputs.majorMinorPatch }} path: ./packages/*.nupkg diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 8830b98..08dbf38 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -56,7 +56,7 @@ jobs: verbose: true - name: Upload coverage report artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: coverage-report path: ./coveragereport/ diff --git a/.github/workflows/performance-analyzer.yml b/.github/workflows/performance-analyzer.yml index 6ed2152..33c21f4 100644 --- a/.github/workflows/performance-analyzer.yml +++ b/.github/workflows/performance-analyzer.yml @@ -97,7 +97,7 @@ jobs: continue-on-error: true - name: Upload artifacts (logs, binlog, reports) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: build-artifacts path: artifacts/ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8aecf04..2afaddb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -90,7 +90,7 @@ jobs: /p:PackageReleaseNotes="Release ${{ steps.version.outputs.VERSION }}" - name: Upload packages to GitHub - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: nuget-packages-${{ steps.version.outputs.VERSION }} path: ./packages/*.nupkg