From eb46cb3b620b0fd5063c9dbdde1bbead10f91d64 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Nov 2025 04:01:42 +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 +++--- .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 2461cfb..41c5f50 100644 --- a/.github/workflows/CI_build.yml +++ b/.github/workflows/CI_build.yml @@ -32,7 +32,7 @@ jobs: - name: Archive artifacts for win32 if: matrix.build_platform == 'Win32' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: artifacts_win32 path: | @@ -40,7 +40,7 @@ jobs: - name: Archive artifacts for x64 if: matrix.build_platform == 'x64' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: artifacts_x64 path: | @@ -49,7 +49,7 @@ jobs: - name: Archive artifacts for ARM64 if: matrix.build_platform == 'ARM64' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: artifacts_arm64 path: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 22d8f55..92fe32d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -56,7 +56,7 @@ jobs: - name: Archive artifacts for win32 if: matrix.build_platform == 'Win32' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: artifacts_win32 path: | @@ -64,7 +64,7 @@ jobs: - name: Archive artifacts for x64 if: matrix.build_platform == 'x64' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: artifacts_x64 path: | @@ -73,7 +73,7 @@ jobs: - name: Archive artifacts for ARM64 if: matrix.build_platform == 'ARM64' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: artifacts_arm64 path: |