From 32663922c25b609c85497f0b2782b1ae29d47b5e Mon Sep 17 00:00:00 2001 From: Profitroll Date: Fri, 10 Jan 2025 11:29:30 +0200 Subject: [PATCH] Replaced ubuntu-latest with ubuntu-24.04 and added pip cache --- .gitea/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/tests.yml b/.gitea/workflows/tests.yml index 2afb5dc..5b0d617 100644 --- a/.gitea/workflows/tests.yml +++ b/.gitea/workflows/tests.yml @@ -11,8 +11,7 @@ on: jobs: test: - runs-on: ubuntu-latest - container: catthehacker/ubuntu:act-latest + runs-on: ubuntu-24.04 strategy: matrix: python-version: ["3.9", "3.10", "3.11"] @@ -23,6 +22,7 @@ jobs: uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} + cache: 'pip' env: AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache - name: Install dependencies