From e4fa0c07a149798e3218821be6b66dd957cb69dd Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Fri, 17 May 2024 11:16:04 +0300 Subject: [PATCH] workflows: Use Fedora 40 to trigger Anaconda Rawhide was missing python3, and I am not sure what else is happening in Rawhide and it just feels like unnecessary pain to use Rawhide to run this workflow. --- .github/workflows/trigger-anaconda.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/trigger-anaconda.yml b/.github/workflows/trigger-anaconda.yml index abbed7203878..50a17bda429f 100644 --- a/.github/workflows/trigger-anaconda.yml +++ b/.github/workflows/trigger-anaconda.yml @@ -19,16 +19,16 @@ jobs: permissions: contents: read statuses: write - container: registry.fedoraproject.org/fedora:rawhide + container: registry.fedoraproject.org/fedora:40 # this polls for a COPR build, which can take long timeout-minutes: 120 steps: - name: Install dependencies run: | - dnf install -y git-core dnf5-plugins || { + dnf install -y git-core dnf-plugins-core || { sleep 60 - dnf install -y git-core dnf5-plugins + dnf install -y git-core dnf-plugins-core } # Naïvely this should wait for github.event.pull_request.head.sha, but