From 3ffcdf8317f003404b62b348d8164cf40902440d Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Sat, 13 Jul 2024 04:42:06 -0400 Subject: [PATCH] ci: Pass `--skip-broken` after `install`, not before Apparently dnf was changed in Fedora Rawhide: https://bugzilla.redhat.com/show_bug.cgi?id=2216055 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ad8ff9..0b5139c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,10 +80,10 @@ jobs: dnf --refresh install -y 'dnf-command(config-manager)' epel-release && dnf config-manager --set-enabled crb - name: install dependencies - # The --skip-broken argument works around RedHat UBI's missing packages. - # (They're only used for testing, so it's OK to not install them.) + # The --skip-broken argument works around missing packages. (They're + # only used for testing, so it's OK to not install them.) run: | - dnf --refresh --skip-broken install -y \ + dnf --refresh install --skip-broken -y \ automake \ findutils \ iproute \