diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ec0df6f8..eb74039c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,6 +18,7 @@ jobs: matrix: os: - "ubuntu-latest" + - "ubuntu-20.04" - "windows-latest" - "macos-latest" mongodb-version: diff --git a/action.yml b/action.yml index 40f284d2..1a4784c7 100644 --- a/action.yml +++ b/action.yml @@ -35,6 +35,11 @@ outputs: runs: using: "composite" steps: + - id: "add-python" + name: "Install supported version of python" + uses: actions/setup-python@v5 + with: + python-version: '3.13' - id: "add-pip-path" name: "Add PIP install folder to path" run: echo "$HOME/.local/bin" >> $GITHUB_PATH