From 707bcc14c347c1da68bfed1e5bbcf1afa204cb53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20Th=E1=BA=BF=20H=C6=B0ng?= Date: Wed, 18 Dec 2024 18:27:31 +0700 Subject: [PATCH] chore(ci): fix --- .github/workflows/docs.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index f00830f..dd42a4c 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -9,11 +9,16 @@ jobs: # Build job build: # Specify runner + build & upload the static files as an artifact - runs-on: python:latest + runs-on: ubuntu-latest steps: - name: Checkout code id: checkout-code uses: actions/checkout@v3 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.13' + cache: 'pip' # caching pip dependencies - name: Install dependencies id: install run: |