From 0b659a77d2f76294613931e37da5eaab69c600ac Mon Sep 17 00:00:00 2001 From: Mohamed Hamdi KAANICHE <124816027+MHKAANICHE@users.noreply.github.com> Date: Fri, 2 Feb 2024 03:32:13 +0100 Subject: [PATCH] Update devops.yml GitHub Actions workflow configuration is attempting to set up Python 3.10, but it seems that version 3.10.13 is not available in the setup-python action. we Set up Python 3.11 --- .github/workflows/devops.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/devops.yml b/.github/workflows/devops.yml index 18e60fb..32c70ed 100644 --- a/.github/workflows/devops.yml +++ b/.github/workflows/devops.yml @@ -7,10 +7,10 @@ jobs: runs-on : ubuntu-latest steps : - uses : actions/checkout@v2 - - name : Set up Python 3.10 + - name : Set up Python 3.11 uses : actions/setup-python@v1 with : - python-version : 3.10 + python-version : 3.11 - name : install dependencies run : | make install