From 38cfe3d6866395d565f7a55bfedfc5c8f23e66f4 Mon Sep 17 00:00:00 2001 From: lagertonne Date: Mon, 11 Nov 2024 21:05:37 +0100 Subject: [PATCH] Fix python version --- .forgejo/workflows/testing.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/testing.yml b/.forgejo/workflows/testing.yml index bee7aeb..d53c269 100644 --- a/.forgejo/workflows/testing.yml +++ b/.forgejo/workflows/testing.yml @@ -6,11 +6,13 @@ on: jobs: test: runs-on: docker + container: + image: docker.io/node:20-bookworm steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: - python-version: '3.13' + python-version: 3.11 cache: 'pip' - name: Install needed python modules working-directory: core