Skip to content

Commit

Permalink
github: remove version from python-format action
Browse files Browse the repository at this point in the history
Problem: The "python-format" GitHub action fails with:

"Error: The version '3.7' with architecture 'x64' was not found for
Ubuntu 24.04."

because Python 3.7 reached its EOL.

Fix the version of Ubuntu for the "python-format" action to
ubuntu-20.04 instead of using ubuntu-latest.
  • Loading branch information
cmoussa1 committed Dec 16, 2024
1 parent 9998fde commit fb58d54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

python-format:
name: python format
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
Expand Down

0 comments on commit fb58d54

Please sign in to comment.