From f1ecde5d3ec3f2d57243037d42ecba8607a6dcbd Mon Sep 17 00:00:00 2001 From: James Chen Date: Fri, 6 Oct 2023 13:01:47 +0800 Subject: [PATCH] Use python 3.8 for windows --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a2613b5d4..65636533e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -440,6 +440,10 @@ jobs: - name: Checkout uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + with: + python-version: '3.8' + - name: Check is_debug shell: bash run: | @@ -452,6 +456,8 @@ jobs: - name: Print env run: | echo "env.IS_DEBUG=${{ env.IS_DEBUG }}" + echo "----- python version -----" + python --version - name: Clone DepotTools shell: bash