Skip to content

Commit

Permalink
Pin Ubuntu to 22.04 for Python 3.7 workflow
Browse files Browse the repository at this point in the history
Fix the following error at the setup-python step:

```
Version 3.7 was not found in the local cache
Error: The version '3.7' with architecture 'x64' was not found for Ubuntu 24.04.
The list of all available versions can be found here: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
```

See e.g. https://github.com/galaxyproject/galaxy/actions/runs/11252595341/job/31294713655
  • Loading branch information
nsoranzo committed Oct 9, 2024
1 parent 8cc3604 commit 70e1fad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test_galaxy_packages_for_pulsar.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:
jobs:
test:
name: Test
runs-on: ubuntu-latest
runs-on: ubuntu-22.04 # Python 3.7 is not available via setup-python on ubuntu >=24.04
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 70e1fad

Please sign in to comment.