From 7be9ec6b61702543c00e36fba2f95ab7fa68419c Mon Sep 17 00:00:00 2001 From: lagertonne Date: Mon, 11 Nov 2024 21:17:09 +0100 Subject: [PATCH] Disable cache cause fuck actions --- .forgejo/workflows/testing.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/testing.yml b/.forgejo/workflows/testing.yml index 42267b6..2987234 100644 --- a/.forgejo/workflows/testing.yml +++ b/.forgejo/workflows/testing.yml @@ -7,16 +7,16 @@ jobs: test: runs-on: docker container: - image: docker.io/node:20-bookworm + image: ghcr.io/catthehacker/ubuntu:act-22.04 steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: - python-version: '3.x' - cache: 'pip' + python-version: '3.11' + cache: 'pip'' - name: Install needed python modules working-directory: core - run: cd core && pip install -r requirements.prod.txt + run: cd core && pip3 install -r requirements.prod.txt - name: Run django tests working-directory: core run: python3 -m manage.py test