From 5528236d7088de78f90b7e434e6aea2c06aed4f8 Mon Sep 17 00:00:00 2001 From: Daniel Persson Date: Sun, 12 Jan 2025 13:55:41 +0100 Subject: [PATCH] Set exact python version in automation To prevent changes in python from breaking the build. --- .github/actions/install/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/install/action.yml b/.github/actions/install/action.yml index e8ed5c9..53297fb 100644 --- a/.github/actions/install/action.yml +++ b/.github/actions/install/action.yml @@ -6,7 +6,7 @@ runs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '3.x' + python-version: '3.11' cache: 'pip' cache-dependency-path: .requirements.txt - name: Install dependencies