From 9e3c1323a624ff289f6e4385d40c025ab1f2bd87 Mon Sep 17 00:00:00 2001 From: Ilia Bozhinov Date: Sat, 23 Mar 2024 15:24:23 +0200 Subject: [PATCH] ci: use alpine:latest instead of alpine:edge (#2251) There is no reason to catch all the latest bugs in a CI ... --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3cea1d239..d504b1cc3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -5,7 +5,7 @@ jobs: test_musl_gcc: name: "Test with GCC/musl/libstdc++/BFD on Alpine Linux" runs-on: ubuntu-latest - container: alpine:edge + container: alpine:latest steps: - run: apk --no-cache add git gcc g++ binutils pkgconf meson ninja musl-dev wayland-dev wayland-protocols libinput-dev libevdev-dev libxkbcommon-dev pixman-dev glm-dev libdrm-dev mesa-dev cairo-dev pango-dev eudev-dev libxml2-dev libseat-dev libxcb-dev xcb-util-wm-dev xwayland doctest doctest-dev cmake libdisplay-info-dev hwdata-dev - uses: actions/checkout@v1