Skip to content

Commit 55ce856

Browse files
[issue-839] Run GH Actions workflow on ubuntu-22.04 instead of ubuntu-latest
ubuntu-latest does not support Python 3.7 anymore. See actions/runner-images#10636 Signed-off-by: Armin Tänzer <[email protected]>
1 parent a25937f commit 55ce856

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/check_codestyle.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
shell: bash
2020
strategy:
2121
matrix:
22-
os: [ ubuntu-latest, macos-latest, windows-latest ]
22+
os: [ ubuntu-22.04, macos-latest, windows-latest ]
2323
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
2424
exclude: # see https://github.com/actions/runner-images/issues/9770#issuecomment-2085623315
2525
- python-version: "3.7"

.github/workflows/install_and_test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ${{ matrix.os }}
1717
strategy:
1818
matrix:
19-
os: [ ubuntu-latest, macos-latest, windows-latest ]
19+
os: [ ubuntu-22.04, macos-latest, windows-latest ]
2020
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
2121
exclude: # see https://github.com/actions/runner-images/issues/9770#issuecomment-2085623315
2222
- python-version: "3.7"

0 commit comments

Comments
 (0)