From eb2cc3ca1c8941430cae80593c29f7c48f1a23b0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Apr 2026 05:12:39 +0000 Subject: [PATCH] build(deps): bump actions/upload-artifact from 5 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 31457bc7..a80d8ac6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,7 +41,7 @@ jobs: cp imgui-lwjgl3/build/libs/*.jar tmp/ - name: Upload Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: java-libraries path: tmp/*.jar @@ -86,7 +86,7 @@ jobs: buildSrc/scripts/build.sh ${{ matrix.target.type }} - name: Upload Artifacts - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: native-library-${{ matrix.target.type }} path: /tmp/imgui/dst/ @@ -98,7 +98,7 @@ jobs: needs: build-natives steps: - name: Merge Artifacts - uses: actions/upload-artifact/merge@v5 + uses: actions/upload-artifact/merge@v7 with: name: native-libraries pattern: native-library-*