From 30bb9d9eb58f61b919b21e77b0c95e24530d3ff7 Mon Sep 17 00:00:00 2001 From: s0600204 Date: Sat, 21 Oct 2023 22:39:28 +0100 Subject: [PATCH] Update workflow due to deprecation The following are now consdered deprecated by GHA: * `node12` (used by `actions/checkout@v2` and `actions/upload-artifact@v2`) * The `set-output` command --- .github/workflows/windows.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 61bf6e0ff..64ed7f1d9 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -64,7 +64,7 @@ jobs: rtmidi:p - name: Checkout source - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 1 @@ -90,13 +90,13 @@ jobs: id: wheel run: | pip wheel --no-deps . - echo "::set-output name=filename::`ls *.whl`" + echo "filename=`ls *.whl`" >> $GITHUB_OUTPUT # There's no difference between wheels created by the different # environments, so only save one. - name: Upload wheel if: ${{ matrix.sys == 'mingw64' && matrix.cc == 'gcc' }} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ${{ steps.wheel.outputs.filename }} path: ${{ steps.wheel.outputs.filename }}