From 49edddf0eb9090f5ad9b74cfcc7634b20e7dd20d Mon Sep 17 00:00:00 2001 From: Ronnie Dutta <61982285+MetRonnie@users.noreply.github.com> Date: Thu, 23 Nov 2023 12:27:12 +0000 Subject: [PATCH] GH Actions: limit tutorial workflow to Py3.11 --- .github/workflows/test_tutorial_workflow.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_tutorial_workflow.yml b/.github/workflows/test_tutorial_workflow.yml index 1e1fec1746e..c83c850ad5d 100644 --- a/.github/workflows/test_tutorial_workflow.yml +++ b/.github/workflows/test_tutorial_workflow.yml @@ -21,7 +21,7 @@ jobs: test: strategy: matrix: - python-version: ['3.7', '3'] + python-version: ['3.7', '3.11'] runs-on: ubuntu-latest timeout-minutes: 10 steps: @@ -31,7 +31,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install docs/tutorial dependencies uses: cylc/cylc-doc/.github/actions/install-dependencies@master