From cfe0072315e88931171532647c043333912a1c2e Mon Sep 17 00:00:00 2001 From: cochcoder Date: Thu, 27 Feb 2025 14:43:58 -0500 Subject: [PATCH] Use dnf rather than apt-get --- .github/workflows/build_all.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_all.yml b/.github/workflows/build_all.yml index d242b30b40..9373e05ab1 100644 --- a/.github/workflows/build_all.yml +++ b/.github/workflows/build_all.yml @@ -83,12 +83,11 @@ jobs: - name: "Remove unneeded stuff to free disk space" run: rm -rf /usr/local/lib/android/* /usr/share/dotnet/* /opt/ghc1/* "/usr/local/share/boost1/*" - - uses: actions/checkout@v4 - - name: Install Meson + - name: Install dependencies run: | - apt-get update - apt-get install -y python3-pip + dnf -y install python3-pip pip3 install meson + - uses: actions/checkout@v4 - name: Get the version and date run: | ver_pure=$(grep 'set(SoftFever_VERSION' version.inc | cut -d '"' -f2)