From 08ad958e12207f0e5f9d866bd340f006e98df76f Mon Sep 17 00:00:00 2001 From: continuist Date: Sat, 29 Mar 2025 22:42:12 -0400 Subject: [PATCH] try to get this working --- .forgejo/workflows/main.yml | 8 ++++---- Dockerfile | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/main.yml b/.forgejo/workflows/main.yml index 3ffa3a3..0ca22f2 100644 --- a/.forgejo/workflows/main.yml +++ b/.forgejo/workflows/main.yml @@ -7,16 +7,16 @@ on: jobs: test: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - name: Check out repository uses: actions/checkout@v2 - name: Set up Python - uses: actions/setup-python@v4 - # with: - # python-version: '3.12.3' + uses: actions/setup-python@v2 + with: + python-version: 3.12 - name: Install dependencies run: | diff --git a/Dockerfile b/Dockerfile index d2c2e5e..e8ba6b8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12.3 +FROM python:3.12 WORKDIR /app