From 49aa0b6e065e6775aeb435d10613b429ff4c1221 Mon Sep 17 00:00:00 2001 From: Mukilan Thiyagarajan Date: Thu, 18 May 2023 19:41:11 +0530 Subject: [PATCH] Use Python 3.9 on linux workflows It looks like the dist-packages of python 3.8 on the runner has an older version of ssl package which is now causing nightly builds to fail. --- .github/workflows/linux.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 6fd5da175a0..d38b88acdce 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -61,6 +61,10 @@ jobs: fetch-depth: 2 - name: Run sccache-cache uses: mozilla-actions/sccache-action@v0.0.3 + - name: Select Python 3.9 + uses: actions/setup-python@v4 + with: + python-version: '3.9' - name: Bootstrap Python run: python3 -m pip install --upgrade pip virtualenv - name: Bootstrap dependencies