diff options
author | Paul Donald <newtwen@gmail.com> | 2024-01-31 03:59:40 +0100 |
---|---|---|
committer | Paul Donald <newtwen@gmail.com> | 2024-01-31 03:59:40 +0100 |
commit | 3e0f119270b9045953fd1da4c2ce682feb9d7b46 (patch) | |
tree | 031c88e5f4c447bac327f8e12e849d7dbb0eb719 /.github/workflows/build.yml | |
parent | 07e025664bc786aa1324d0b86a50e4a06b3847ed (diff) |
house-keeping: migrate workflows from GitHub deprecated node16 -> node20
GitHub currently warns with:
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/upload-artifact@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d7179a01f4..fd5e2cfa40 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -59,13 +59,13 @@ jobs: run: cp bin/packages/${{ matrix.arch }}/packages_ci/*.ipk . || true - name: Store packages - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.arch}}-packages path: "*.ipk" - name: Store logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.arch}}-logs path: logs/ |