diff options
author | 3DJ <[email protected]> | 2022-10-23 10:46:13 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2022-10-23 08:46:13 -0700 |
commit | c5453c9b3b07b62b07ddd59aa5784355a3cfa7d5 (patch) | |
tree | aebd151bad0e0819b44f8d554bd1b08a5430ad4b /.github | |
parent | 389dfe62ad6d7df867e1eb1bc6e9021a4325b6e6 (diff) |
Update upload-artifact to remove warning (#778)
> Node.js 12 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. Please update the following actions to use Node.js 16: actions/upload-artifact
This should fix 2 of the 3 warnings here: https://github.com/kcat/openal-soft/actions/runs/3303596206
by updating to this https://github.com/actions/upload-artifact/releases/tag/v3.1.1
The third warning is more of a heads up of the macOS runner being updated so it should go away eventually
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index faa7841f..3b1160f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,7 +77,7 @@ jobs: - name: Upload Archive # Upload package as an artifact of this workflow. - uses: actions/upload-artifact@v2 + uses: actions/[email protected] if: ${{ matrix.config.os == 'windows-latest' }} with: name: soft_oal-${{matrix.config.name}} |