From 30a7505778a40f3f147b665a6d3cf908ef5be4e2 Mon Sep 17 00:00:00 2001 From: zeira42 Date: Mon, 9 Dec 2024 20:26:11 +0000 Subject: [PATCH] . --- .github/workflows/remote.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/remote.yml b/.github/workflows/remote.yml index ecbb13f7..4941a4c9 100644 --- a/.github/workflows/remote.yml +++ b/.github/workflows/remote.yml @@ -42,7 +42,7 @@ jobs: " - name: upload build artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: test-artifact path: bin/test @@ -50,13 +50,17 @@ jobs: deploy: runs-on: [ARM64] needs: [build] + env: + ACTIONS_ALLOW_UNSECURE_NODE_VERSION: true steps: - name: ensure directory exists run: mkdir -p ./team06/bin + + - name: download build artifacts - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: test-artifact path: ./team06/bin