From fae6c9ef9c9b59906df1edae065d163843238dfd 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 --- .github/workflows/main.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 71b6278e1de0d..75feae71236d6 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -50,6 +50,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 }}-${{ github.event_name }}-${{ inputs.platform }} @ ${{ github.event.label.name || github.event.pull_request.number || github.sha }} @ ${{ github.event.label.name && github.event.pull_request.number || github.event.action }}