From 73efa80d46a5fe593cdb9b15742556f4c732caa4 Mon Sep 17 00:00:00 2001 From: Thomas Dallmair Date: Sun, 29 Dec 2024 01:49:28 +0100 Subject: [PATCH] Update ci.yml - Add dist-upgrade --- .github/workflows/ci.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cec03e59..57c7071b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,10 @@ jobs: steps: - name: Install build dependencies - run: sudo apt-get update && sudo apt-get install -y libusb-1.0-0-dev libsystemd-dev libev-dev libfmt-dev libinih-dev + run: | + sudo apt-get update + sudo apt-get dist-upgrade -y + sudo apt-get install -y --no-install-recommends libusb-1.0-0-dev libsystemd-dev libev-dev libfmt-dev libinih-dev - uses: actions/checkout@v4 with: @@ -42,7 +45,10 @@ jobs: steps: - name: Install build dependencies - run: apk update && apk add git build-base autoconf automake libtool argp-standalone linux-headers libusb-dev libev-dev fmt-dev inih-dev + run: | + apk update + apk upgrade + apk add git build-base autoconf automake libtool argp-standalone linux-headers libusb-dev libev-dev fmt-dev inih-dev - name: Configure git in container run: | @@ -79,7 +85,7 @@ jobs: - name: Install dependencies run: | apt-get update - apt-get upgrade -y + apt-get dist-upgrade -y apt-get install -y --no-install-recommends ca-certificates git sudo - name: Configure git in container