Skip to content

Commit 96b5c89

Browse files
committed
CI/GHA: switch to ubuntu-24.04
The only change needed is a flag for pip install, as in Ubuntu-24.04 it is patched to error out saying to use apt. Signed-off-by: Kir Kolyshkin <[email protected]>
1 parent 0d24211 commit 96b5c89

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
test:
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-24.04
1515
strategy:
1616
fail-fast: false
1717
matrix:

.github/workflows/validate.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313

1414
lint:
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-24.04
1616
steps:
1717
- uses: actions/checkout@v4
1818
- name: install deps
@@ -24,11 +24,11 @@ jobs:
2424
version: v1.60
2525

2626
codespell:
27-
runs-on: ubuntu-20.04
27+
runs-on: ubuntu-24.04
2828
steps:
2929
- uses: actions/checkout@v4
3030
- name: install deps
31-
# Version of codespell bundled with Ubuntu is way old, so use pip.
32-
run: pip install codespell
31+
# Version of codespell bundled with Ubuntu will become old, so use pip.
32+
run: pip install --break-system-packages codespell
3333
- name: run codespell
3434
run: codespell

0 commit comments

Comments
 (0)