Skip to content

Commit

Permalink
Update devops.yml
Browse files Browse the repository at this point in the history
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
  • Loading branch information
MHKAANICHE authored Feb 2, 2024
1 parent 60d0656 commit 0b659a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/devops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0b659a7

Please sign in to comment.