From aa0b8ee6f9189b63c4e267f09a1c13386c58cb66 Mon Sep 17 00:00:00 2001 From: marwin Date: Mon, 16 Mar 2026 20:03:49 +0100 Subject: [PATCH] Use catthehacker/ubuntu:act-22.04 for tests --- .forgejo/workflows/test.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index 5944dd9..5b671bd 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -11,15 +11,12 @@ jobs: test: runs-on: ubuntu-latest container: - image: python:3.12-slim + image: catthehacker/ubuntu:act-22.04 steps: - - name: Install git - run: apt-get update && apt-get install -y --no-install-recommends git - - uses: actions/checkout@v4 - - name: Install dependencies + - name: Install Python dependencies run: pip install --no-cache-dir -r requirements.txt - name: Django system check