Skip to content

Commit 713ffc7

Browse files
committed
chore(cicd): use Ubuntu 24.04
1 parent bf78fd6 commit 713ffc7

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1515
jobs:
1616
lint:
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-24.04
1818
steps:
1919
- uses: actions/checkout@v4
2020
- uses: actions/setup-python@v5
@@ -23,7 +23,7 @@ jobs:
2323

2424
- name: Install dependencies
2525
run: |
26-
sudo apt-get -y install libgirepository1.0-dev
26+
apt-get -y install libcairo2-dev libgirepository1.0-dev
2727
pip install -r requirements.dev.txt
2828
pip list
2929
@@ -38,10 +38,10 @@ jobs:
3838
mypy src/ po/
3939
4040
meson-build-test:
41-
runs-on: ubuntu-latest
42-
container:
43-
# Use Ubuntu 23.04 in order to have appstreamcli v0.16 instead of 0.15.
44-
image: ubuntu:23.04
41+
runs-on: ubuntu-24.04
42+
# container:
43+
# # Use Ubuntu 23.04 in order to have appstreamcli v0.16 instead of 0.15.
44+
# image: ubuntu:23.04
4545
steps:
4646
- uses: actions/checkout@v4
4747
- uses: actions/setup-python@v5
@@ -55,7 +55,7 @@ jobs:
5555
- run: meson test --print-errorlogs -C build
5656

5757
flatpak-build-test:
58-
runs-on: ubuntu-latest
58+
runs-on: ubuntu-24.04
5959
container:
6060
image: ghcr.io/flathub-infra/flatpak-github-actions:gnome-46
6161
options: --privileged

0 commit comments

Comments
 (0)