From f8323270f0e5b7dae73e8c42b8c9ff219387bd05 Mon Sep 17 00:00:00 2001 From: Yuri Goldfeld Date: Thu, 25 Jan 2024 15:35:59 -0800 Subject: [PATCH] GitHub is now warning Node.js 16 is deprecated in favor of 20, and upload-artifact@v3 is triggering it. Trying the latest known version of that action; maybe it will go away? Answer: Yes, it did go away (did this in flow before). --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 37f8f1e50..45c56df50 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1028,7 +1028,7 @@ jobs: - name: Upload test/demo logs (please inspect if failure(s) seen above) if: | always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ipc-test-logs-${{ matrix.compiler.id }}-${{ matrix.build-test-cfg.id }} path: ${{ env.install-dir }}/bin/logs.tgz @@ -1220,7 +1220,7 @@ jobs: ${{ github.workspace }}/build/${{ matrix.build-cfg.conan-profile-build-type }} - name: Upload documentation tarball - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ipc-doc path: ${{ github.workspace }}/doc/ipc_doc.tgz