From 19e4df528b5742c70b6f1712ed7a3ad3648f7238 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 27 Feb 2026 12:56:52 +0800 Subject: [PATCH] chore(deps): update actions/upload-artifact action to v7 (#6382) * chore(deps): update actions/upload-artifact action to v7 * feat: direct file uploads --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Slinetrac --- .github/workflows/dev.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index e25ea5e4f..1475bffe4 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -153,24 +153,24 @@ jobs: - name: Upload Artifacts (macOS) if: matrix.os == 'macos-latest' && github.event.inputs[matrix.input] == 'true' - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: - name: ${{ matrix.target }} + archive: false path: target/${{ matrix.target }}/release/bundle/dmg/*.dmg if-no-files-found: error - name: Upload Artifacts (Windows) if: matrix.os == 'windows-latest' && github.event.inputs[matrix.input] == 'true' - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: - name: ${{ matrix.target }} + archive: false path: target/${{ matrix.target }}/release/bundle/nsis/*.exe if-no-files-found: error - name: Upload Artifacts (Linux) if: matrix.os == 'ubuntu-22.04' && github.event.inputs[matrix.input] == 'true' - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: - name: ${{ matrix.target }} + archive: false path: target/${{ matrix.target }}/release/bundle/deb/*.deb if-no-files-found: error