From 6fa9f95099b1cbd2baf9e554593a7493e4c59c7e Mon Sep 17 00:00:00 2001 From: Rupal Mahajan Date: Mon, 8 Jul 2024 11:32:42 -0700 Subject: [PATCH 1/2] Fix node issue in CI 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..3a5d52feda 100644 --- a/.github/workflows/sql-test-and-build-workflow.yml +++ b/.github/workflows/sql-test-and-build-workflow.yml @@ -105,6 +105,10 @@ jobs: - { os: windows-latest, java: 21, os_build_args: -x doctest -PbuildPlatform=windows } runs-on: ${{ matrix.entry.os }} + # Allow using Node16 actions + env: + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true + steps: - uses: actions/checkout@v3 From ea68be90e4d373039f768381894343533cf2289c Mon Sep 17 00:00:00 2001 From: Rupal Mahajan Date: Mon, 8 Jul 2024 11:37:59 -0700 Subject: [PATCH 2/2] fix linux ci Signed-off-by: Rupal Mahajan --- .github/workflows/sql-test-and-build-workflow.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sql-test-and-build-workflow.yml b/.github/workflows/sql-test-and-build-workflow.yml index 3a5d52feda..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 @@ -105,10 +109,6 @@ jobs: - { os: windows-latest, java: 21, os_build_args: -x doctest -PbuildPlatform=windows } runs-on: ${{ matrix.entry.os }} - # Allow using Node16 actions - env: - ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true - steps: - uses: actions/checkout@v3