From 5e6997cbd6897a936aa808ae3c09f0f6ae9f9c35 Mon Sep 17 00:00:00 2001 From: Tomas Kracmar Date: Thu, 28 May 2026 15:02:34 +0200 Subject: [PATCH] Fix Gitea Actions CI: use python:3.11-slim container instead of actions/setup-python --- .gitea/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 3c4219a..844f22e 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -9,17 +9,16 @@ on: jobs: lint-and-test: runs-on: ubuntu-latest + container: python:3.11-slim defaults: run: working-directory: ./backend steps: - - uses: actions/checkout@v4 + - name: Install git + run: apt-get update && apt-get install -y git - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: "3.11" + - uses: actions/checkout@v4 - name: Install dependencies run: |