From e68664568596a3cf45e5d6141869350a232a0a67 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 22:06:53 +0100 Subject: [PATCH] Bump actions/upload-artifact from 4 to 5 (#983) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/CI_build.yml | 6 +++--- .github/workflows/release.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/CI_build.yml b/.github/workflows/CI_build.yml index f461002ba..17c5b5a00 100644 --- a/.github/workflows/CI_build.yml +++ b/.github/workflows/CI_build.yml @@ -42,7 +42,7 @@ 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_and_list_x64 path: | @@ -51,7 +51,7 @@ jobs: - 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_and_list_x86 path: | @@ -60,7 +60,7 @@ jobs: - 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_and_list_arm64 path: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b988c1456..045b11fed 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -67,7 +67,7 @@ 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_and_list_x64 path: | @@ -76,7 +76,7 @@ jobs: - 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_and_list_x86 path: | @@ -85,7 +85,7 @@ jobs: - 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_and_list_arm64 path: |