From b0e8b0de4917df706d49587850f158998578e3e5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 09:01:47 +0000 Subject: [PATCH] Bump actions/upload-artifact from 4 to 6 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...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/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..d920d90 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@v6 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@v6 with: name: nppsnippets_dll_linux_x64 path: NppSnippets.dll diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index 78582a3..64b9a56 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@v6 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@v6 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@v6 with: name: nppsnippets_dll_arm64 path: ${{ matrix.build_platform }}/${{ matrix.build_configuration }}/NppSnippets.dll