From 3e0f119270b9045953fd1da4c2ce682feb9d7b46 Mon Sep 17 00:00:00 2001 From: Paul Donald Date: Wed, 31 Jan 2024 03:59:40 +0100 Subject: [PATCH] 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/. --- .github/workflows/build.yml | 4 ++-- 1 file 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/ -- 2.30.2