From 1d7c4697b3b71d420e5108e999f9e578fa8baf5b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Nov 2025 05:01:44 +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/CI_build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI_build.yml b/.github/workflows/CI_build.yml index a1e5904..e9da367 100644 --- a/.github/workflows/CI_build.yml +++ b/.github/workflows/CI_build.yml @@ -25,21 +25,21 @@ jobs: - name: Archive artifacts for x64 if: matrix.build_platform == 'x64' && matrix.build_configuration == 'Release' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: plugin_dll_x64 path: bin64\NppPluginTemplate.dll - name: Archive artifacts for Win32 if: matrix.build_platform == 'Win32' && matrix.build_configuration == 'Release' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: plugin_dll_x86 path: bin\NppPluginTemplate.dll - name: Archive artifacts for ARM64 if: matrix.build_platform == 'ARM64' && matrix.build_configuration == 'Release' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: plugin_dll_arm64 path: arm64\NppPluginTemplate.dll