From 28d852dd3ebfb0c5e0d5674903e30ecafaa58e2f Mon Sep 17 00:00:00 2001 From: Craig Perkins Date: Tue, 9 Jul 2024 10:40:14 -0400 Subject: [PATCH] Fix checkout action failure Signed-off-by: Craig Perkins --- .github/workflows/CI-workflow.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/CI-workflow.yml b/.github/workflows/CI-workflow.yml index 54ac7aca8a..4658f2805b 100644 --- a/.github/workflows/CI-workflow.yml +++ b/.github/workflows/CI-workflow.yml @@ -38,6 +38,10 @@ jobs: # need to switch to root so that github actions can install runner binary on container without permission issues. options: --user root + # Allow using Node16 actions + env: + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true + steps: - name: Setup Java ${{ matrix.java }} uses: actions/setup-java@v1 @@ -190,6 +194,10 @@ jobs: environment: ml-commons-cicd-env runs-on: windows-latest + # Allow using Node16 actions + env: + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true + steps: - name: Setup Java ${{ matrix.java }} uses: actions/setup-java@v1