Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

github: fix ubuntu version for "python-format" action #547

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
github: remove version from python-format action
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.
cmoussa1 committed Dec 16, 2024
commit fb58d54530d5a6ed3c46506134376fa3bdf4c95b
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -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: