From c5389911a828163c5bd6ba33a95f25313a9145d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 09:09:05 +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 0ee4ac83..2da2aff5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,7 +43,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 @@ -90,7 +90,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/ @@ -102,7 +102,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-*