From c4133ef56b12871397dd19372481278f8a8dbae4 Mon Sep 17 00:00:00 2001 From: alcachofass <32006541+alcachofass@users.noreply.github.com> Date: Sat, 16 May 2026 08:46:04 -0700 Subject: [PATCH 1/2] Update actions versions. --- .github/workflows/build.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e0a2b64..0b67f18 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - name: Build Windows QVM run: | ./build.bat @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - name: Update and get packages run: | sudo apt-get update # && sudo apt-get upgrade -y @@ -51,7 +51,7 @@ jobs: ARCHIVE: 1 - name: Store QVM artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v6 with: name: QVMs path: | @@ -60,7 +60,7 @@ jobs: retention-days: 5 - name: Store Linux x86 .so artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v6 with: name: linux-x86 path: | @@ -70,7 +70,7 @@ jobs: retention-days: 5 - name: Store Linux x86_64 .so artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v6 with: name: linux-x86_64 path: | @@ -80,7 +80,7 @@ jobs: retention-days: 5 - name: Store Windows x86 DLL artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v6 with: name: windows-x86 path: | @@ -90,7 +90,7 @@ jobs: retention-days: 5 - name: Store Windows x86_64 DLL artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v6 with: name: windows-x86_64 path: | @@ -101,7 +101,7 @@ jobs: - name: Publish a release if: startsWith(github.ref, 'refs/tags/') - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} files: | From 5c362a3620b28c3bb7dd8bb168b91e56f3ec28b7 Mon Sep 17 00:00:00 2001 From: alcachofass <32006541+alcachofass@users.noreply.github.com> Date: Sat, 16 May 2026 08:48:49 -0700 Subject: [PATCH 2/2] trigger test. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0b67f18..6fc92f5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,7 +38,7 @@ jobs: make -j8 debug ARCH=x86_64 make -j8 debug PLATFORM=windows ARCH=x86_64 # - name: Get wine32-development package - # run: | + # run: | # sudo dpkg --add-architecture i386 && sudo apt-get update && sudo apt-get install -y wine32-development # - name: Build QVM using wine # run: |