From d32f52b91d11b4f67f0ca92e268b1e6557621de1 Mon Sep 17 00:00:00 2001 From: Yuto Takano Date: Mon, 15 Jan 2024 22:56:27 +0100 Subject: [PATCH] Update courses.yml CI action to use Python 3.11 --- .github/workflows/courses.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/courses.yml b/.github/workflows/courses.yml index 687c4c3a..88cceaa2 100644 --- a/.github/workflows/courses.yml +++ b/.github/workflows/courses.yml @@ -22,10 +22,10 @@ jobs: steps: # We need Python - - name: Set up Python 3.8 - uses: actions/setup-python@v2 + - name: Set up Python 3.11 + uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: 3.11 # We need to fetch the code where our courses.yml generator lives - name: Fetch bi-app code