Skip to content

Commit ade0c58

Browse files
Build System - Use Ubuntu 22.04 for GitHub actions docs build.
If we use Ubuntu 24.04 (the same as ubuntu-latest), the build will fail because Python 3.7 is no longer available on Ubuntu 24.04.
1 parent 7f2607e commit ade0c58

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build_and_deploy_docs.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ permissions:
1010

1111
jobs:
1212
build:
13-
runs-on: ubuntu-latest
13+
# Ubuntu 24.04 does not have Python 3.7 anymore, so we must move
14+
# back to Ubuntu 22.04 for compatibility.
15+
runs-on: ubuntu-22.04
1416
strategy:
1517
matrix:
1618
python-version: ["3.7"]

0 commit comments

Comments
 (0)