From dd707e305773e4bcbe44a47606a38b5a9ea72af3 Mon Sep 17 00:00:00 2001 From: Mike Nolan Date: Fri, 19 Apr 2024 22:13:28 -0500 Subject: [PATCH] Fix --- .gitea/workflows/build.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 02834b6..9561d6d 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -5,7 +5,9 @@ jobs: Build: runs-on: ubuntu-latest steps: - - run: apt install -y python3 python3-pip3 + - uses: actions/setup-python@v5 + with: + python-version: '3.10' - run: pip3 install screenplain - run: pip3 install 'screenplain[PDF]' - uses: actions/cache@v4