diff --git a/.gitea/workflows/ci-pipeline.yaml b/.gitea/workflows/ci-pipeline.yaml index 81092d4..1189e76 100644 --- a/.gitea/workflows/ci-pipeline.yaml +++ b/.gitea/workflows/ci-pipeline.yaml @@ -10,15 +10,15 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - - name: Install Python - run: | - sudo apt-get update - sudo apt-get install python3 python3-venv python3-pip -y + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: "3.10" - name: Check Python Version run: |