From 5aa4fe71da6f86893633e8a2f5459a9aa40e42aa Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Mon, 6 Jul 2020 15:42:26 -0400 Subject: [PATCH] Pass `--refresh` to `dnf` Hopefully this will stop the "Downloading successful, but checksum doesn't match" errors we occasionally see for Fedora. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 64541f6..91ade94 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,7 +73,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: install dependencies - run: dnf --enablerepo=PowerTools install -y automake make perl-Test-Warnings perl-core + run: dnf --refresh --enablerepo=PowerTools install -y automake make perl-Test-Warnings perl-core - name: autogen run: ./autogen - name: configure @@ -89,7 +89,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: install dependencies - run: dnf install -y automake findutils make perl perl-Test-Warnings + run: dnf --refresh install -y automake findutils make perl perl-Test-Warnings - name: autogen run: ./autogen - name: configure