From 80cad2e929ff3be52e0c8ce28b773d19be563b14 Mon Sep 17 00:00:00 2001 From: Kaido Kert Date: Wed, 3 Jul 2024 17:06:21 -0700 Subject: [PATCH] Workaround Actions node20 glibc issues (#3772) Workaround for issue in https://github.com/actions/checkout/issues/1590 b/255654807 (cherry picked from commit fae6c9ef9c9b59906df1edae065d163843238dfd) --- .github/workflows/main.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index b7edda6e4cb5..2d4f66181bf9 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -31,6 +31,8 @@ env: SCCACHE_GCS_RW_MODE: READ_WRITE SCCACHE_IDLE_TIMEOUT: 0 # prevent sccache server from shutting down after long idle. STARBOARD_TOOLCHAINS_DIR: /root/starboard-toolchains + # TODO(b/255654807) Workaround for https://github.com/actions/checkout/issues/1590 + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true concurrency: group: '${{ github.workflow }}-${{ inputs.platform }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.sha }}'