From d29e6744b1cac6733dd47973c79843058d165bbb Mon Sep 17 00:00:00 2001 From: Phil Rzewski Date: Tue, 7 Nov 2023 10:47:38 -0800 Subject: [PATCH] Pin Python to 3.11 to work around zui/2882 (#2883) --- .github/actions/setup-zui/action.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/actions/setup-zui/action.yml b/.github/actions/setup-zui/action.yml index a9ae2c54f2..21abbb6a44 100644 --- a/.github/actions/setup-zui/action.yml +++ b/.github/actions/setup-zui/action.yml @@ -14,6 +14,13 @@ runs: cache: yarn node-version-file: .node-version + # Python version is pinned to something <3.12 to work around: + # https://github.com/brimdata/zui/issues/2882 + - name: Install Python + uses: actions/setup-python@v4 + with: + python-version: '3.11' + - name: Cache NextJS Artifacts uses: jongwooo/next-cache@v1