From c3919bd7db4d60874336c9996fbb1c0022a55f32 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 09:31:32 +0000 Subject: [PATCH] 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/mingw-build.yml | 4 ++-- .github/workflows/msbuild.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/mingw-build.yml b/.github/workflows/mingw-build.yml index bd166f6..69d0422 100644 --- a/.github/workflows/mingw-build.yml +++ b/.github/workflows/mingw-build.yml @@ -33,14 +33,14 @@ jobs: - name: Archive artifacts for x86 if: matrix.build_platform == '32' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: nppsnippets_dll_linux_x32 path: NppSnippets.dll - name: Archive artifacts for x64 if: matrix.build_platform == '64' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: nppsnippets_dll_linux_x64 path: NppSnippets.dll diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index 78582a3..22fc92c 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -28,21 +28,21 @@ jobs: - name: Archive artifacts for x64 if: matrix.build_platform == 'x64' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: nppsnippets_dll_x64 path: ${{ matrix.build_platform }}/${{ matrix.build_configuration }}/NppSnippets.dll - name: Archive artifacts for x32 if: matrix.build_platform == 'Win32' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: nppsnippets_dll_x32 path: ${{ matrix.build_platform }}/${{ matrix.build_configuration }}/NppSnippets.dll - name: Archive artifacts for ARM64 if: matrix.build_platform == 'ARM64' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: nppsnippets_dll_arm64 path: ${{ matrix.build_platform }}/${{ matrix.build_configuration }}/NppSnippets.dll