From 10e0d9ba51bbab27e4e9931483112c173eca6a15 Mon Sep 17 00:00:00 2001 From: Julian Uy Date: Wed, 29 Oct 2025 16:29:19 -0500 Subject: [PATCH 1/2] CI: use macos-15-intel --- .github/workflows/compilation.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/compilation.yml b/.github/workflows/compilation.yml index 44bad13..d0b288e 100644 --- a/.github/workflows/compilation.yml +++ b/.github/workflows/compilation.yml @@ -11,7 +11,7 @@ jobs: matrix: os: [ [macos-latest, arm64], - [macos-13, x86_64], + [macos-15-intel, x86_64], [ubuntu-latest, x86_64] ] @@ -73,7 +73,7 @@ jobs: - name: Download Mac x86_64 artifact uses: actions/download-artifact@v4 with: - name: ps2client-${{ steps.slug.outputs.sha8 }}-macos-13-x86_64 + name: ps2client-${{ steps.slug.outputs.sha8 }}-macos-15-intel-x86_64 - name: Download Mac arm64 artifact uses: actions/download-artifact@v4 From f1d09663c25943f0d49b38794adaa4c713f7e802 Mon Sep 17 00:00:00 2001 From: Julian Uy Date: Wed, 29 Oct 2025 16:30:16 -0500 Subject: [PATCH 2/2] CI: avoid deprecated set-output method --- .github/workflows/compilation.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/compilation.yml b/.github/workflows/compilation.yml index d0b288e..2b7c3d9 100644 --- a/.github/workflows/compilation.yml +++ b/.github/workflows/compilation.yml @@ -24,7 +24,7 @@ jobs: - name: Get short SHA id: slug - run: echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)" + run: printf '%s\n' "sha8=$(printf '%s\n' ${GITHUB_SHA} | cut -c1-8)" >> $GITHUB_OUTPUT - name: Create tar archive (keep executable bit) run: tar -zcvf ps2client-${{ steps.slug.outputs.sha8 }}-${{ matrix.os[0] }}-${{ matrix.os[1] }}.tar.gz bin @@ -48,7 +48,7 @@ jobs: - name: Get short SHA id: slug - run: echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)" + run: printf '%s\n' "sha8=$(printf '%s\n' ${GITHUB_SHA} | cut -c1-8)" >> $GITHUB_OUTPUT - name: Create tar archive run: tar -zcvf ps2client-${{ steps.slug.outputs.sha8 }}-windows-latest-x86_64.tar.gz bin @@ -68,7 +68,7 @@ jobs: - name: Get short SHA id: slug - run: echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)" + run: printf '%s\n' "sha8=$(printf '%s\n' ${GITHUB_SHA} | cut -c1-8)" >> $GITHUB_OUTPUT - name: Download Mac x86_64 artifact uses: actions/download-artifact@v4