Skip to content

Commit

Permalink
Update workflow due to deprecation
Browse files Browse the repository at this point in the history
The following are now consdered deprecated by GHA:

* `node12` (used by `actions/checkout@v2` and `actions/upload-artifact@v2`)
* The `set-output` command
  • Loading branch information
s0600204 committed Mar 14, 2024
1 parent d0dd53a commit 30bb9d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
rtmidi:p
- name: Checkout source
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 1

Expand All @@ -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 }}

0 comments on commit 30bb9d9

Please sign in to comment.