From 55a8737c40783c4f885b2cbce78b648a332bd52e Mon Sep 17 00:00:00 2001 From: Chris Olszewski Date: Fri, 5 Jul 2024 11:35:43 -0700 Subject: [PATCH 1/2] chore: bump pnpm action version --- .github/actions/setup-node/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-node/action.yml b/.github/actions/setup-node/action.yml index 4a98710f9019f..e4be4981f6407 100644 --- a/.github/actions/setup-node/action.yml +++ b/.github/actions/setup-node/action.yml @@ -22,7 +22,7 @@ runs: using: "composite" steps: - name: Setup pnpm - uses: pnpm/action-setup@v2.2.4 + uses: pnpm/action-setup@v4 - name: Setup Node.js uses: actions/setup-node@v3.6.0 From d008b27999bddd424baf5fc8a5f88eafa0f9a2c4 Mon Sep 17 00:00:00 2001 From: Chris Olszewski Date: Fri, 5 Jul 2024 12:48:49 -0700 Subject: [PATCH 2/2] chore: allow for node16 on release --- .github/workflows/turborepo-release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/turborepo-release.yml b/.github/workflows/turborepo-release.yml index 1f7e39ae7b2a9..99e20d4374b61 100644 --- a/.github/workflows/turborepo-release.yml +++ b/.github/workflows/turborepo-release.yml @@ -16,6 +16,9 @@ env: CARGO_PROFILE_RELEASE_LTO: true NPM_TOKEN: ${{ secrets.NPM_TOKEN }} RELEASE_TURBO_CLI: true # TODO: do we need this? + # Needed since we need to build on Xenial which doesn't have a new enough + # GLIBC to use Node 20. + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true on: workflow_dispatch: