From 6ebbba6fc5ec474d1df981ed8253b85d76513b9d Mon Sep 17 00:00:00 2001 From: Rosalie Wanders Date: Sat, 13 Jun 2026 19:14:34 +0200 Subject: [PATCH] ci: use actions/upload-artifact@v7 --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 74e5da3f..4b67d492 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -94,7 +94,7 @@ jobs: shell: bash - name: Upload RMG (AppImage) if: ${{ matrix.features == 'ON' && matrix.architecture == 'x86_64' && matrix.configuration == 'Release' }} - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: RMG-Portable-Linux64-${{ env.GIT_REVISION }} path: Bin/*.AppImage @@ -167,13 +167,13 @@ jobs: shell: msys2 {0} - name: Upload RMG (Portable) if: ${{ matrix.features == 'ON' && matrix.configuration == 'Release' }} - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: RMG-Portable-Windows64-${{ env.GIT_REVISION }} path: Bin/Release/* - name: Upload RMG (Installer) if: ${{ matrix.features == 'ON' && matrix.configuration == 'Release' }} - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: RMG-Setup-Windows64-${{ env.GIT_REVISION }} path: Bin/*.exe