From b36d0ad74de675254ac087164fc057c33fb16845 Mon Sep 17 00:00:00 2001 From: Cdm2883 Date: Sat, 10 Aug 2024 18:06:59 +0800 Subject: [PATCH] ci: fix python installing --- .gitea/workflows/build-demo.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build-demo.yaml b/.gitea/workflows/build-demo.yaml index aa009a3..3f80108 100644 --- a/.gitea/workflows/build-demo.yaml +++ b/.gitea/workflows/build-demo.yaml @@ -3,15 +3,15 @@ on: [push] jobs: build: - runs-on: ubuntu20.04 + runs-on: ubuntu-latest steps: - name: Checkout master uses: https://gitea.com/actions/checkout@v4 - name: Setup Python - uses: https://gitea.com/actions/setup-python@v2 + uses: https://gitea.com/actions/setup-python@v4 with: - python-version: 3.9.1 + python-version: '3.9' - name: Install Material for MkDocs run: pip install mkdocs-material