From 6f4dd2f4707f14c90fe177821175f3855ba0da05 Mon Sep 17 00:00:00 2001 From: theofficialgman <28281419+theofficialgman@users.noreply.github.com> Date: Mon, 31 Aug 2026 19:18:55 -0400 Subject: [PATCH] CI: update actions target versions also upload .appimage and .exe files directly using the new "archive: false" option rather than zipping them --- .github/workflows/build.yml | 4 ++-- .github/workflows/package.yml | 14 ++++++++------ 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ad2796d..f258e14 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,11 +18,11 @@ jobs: name: Translator (build + test) runs-on: windows-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: persist-credentials: false - - uses: actions/setup-dotnet@v4 + - uses: actions/setup-dotnet@v6 with: dotnet-version: '8.0.x' diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index bbad5f1..f88f257 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -29,11 +29,11 @@ jobs: arch: aarch64 runs-on: ${{ matrix.runner }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: persist-credentials: false - - uses: actions/setup-dotnet@v4 + - uses: actions/setup-dotnet@v6 with: dotnet-version: '8.0.x' @@ -47,21 +47,22 @@ jobs: - name: Build AppImage run: bash Launcher/build-appimage.sh - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: WiiCompiled-Setup-linux-${{ matrix.arch }} path: Launcher/dist/WiiCompiled-Setup-${{ matrix.arch }}.AppImage if-no-files-found: error + archive: false windows-installer: name: Windows (installer exe) runs-on: windows-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: persist-credentials: false - - uses: actions/setup-dotnet@v4 + - uses: actions/setup-dotnet@v6 with: dotnet-version: '8.0.x' @@ -69,8 +70,9 @@ jobs: shell: pwsh run: ./Launcher/Build-Installer.ps1 - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: WiiCompiled-Setup-windows-x64 path: Launcher/dist/WiiCompiled-Setup.exe if-no-files-found: error + archive: false