From f241f3401fc4e73596727f3707e79c53a3290a1b Mon Sep 17 00:00:00 2001 From: Rupal Mahajan Date: Mon, 8 Jul 2024 12:35:49 -0700 Subject: [PATCH] Fix checkout action failure (#2807) * Fix node issue in CI Signed-off-by: Rupal Mahajan * fix linux ci Signed-off-by: Rupal Mahajan --------- Signed-off-by: Rupal Mahajan --- .github/workflows/integ-tests-with-security.yml | 4 ++++ .github/workflows/sql-test-and-build-workflow.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/integ-tests-with-security.yml b/.github/workflows/integ-tests-with-security.yml index 77985193cb..6a0b9dcbc6 100644 --- a/.github/workflows/integ-tests-with-security.yml +++ b/.github/workflows/integ-tests-with-security.yml @@ -30,6 +30,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: - uses: actions/checkout@v3 diff --git a/.github/workflows/sql-test-and-build-workflow.yml b/.github/workflows/sql-test-and-build-workflow.yml index 042244a4c0..7ccd65d264 100644 --- a/.github/workflows/sql-test-and-build-workflow.yml +++ b/.github/workflows/sql-test-and-build-workflow.yml @@ -37,6 +37,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: - uses: actions/checkout@v3