From eb758e359f167bcebe19a5176bbb46f88350468f Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sun, 31 Dec 2023 11:33:50 +0900 Subject: [PATCH] Actions: Use Ubuntu image We don't depend on any elementary modules, so using their image is meaningless here --- .github/workflows/main.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index aae0d64..93d78ad 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,12 +6,15 @@ jobs: build: runs-on: ubuntu-latest - container: - image: elementary/docker:stable - + image: ubuntu:22.04 + steps: - uses: actions/checkout@v4 + - name: Install Dependencies + run: | + apt update + apt install -y libglib2.0-dev meson valac - name: Build env: DESTDIR: out