From 1b4fcefaf19b25862bf20623f3dccf119a60094c Mon Sep 17 00:00:00 2001 From: Jakub Jelen Date: Thu, 31 Oct 2024 15:51:51 +0100 Subject: [PATCH] ci: Use fedora:latest containers everywhere Using latest and rawhide in different jobs caused different cache issues where the rust built code did not work on consequent CI runs. Using only fedora:latest container image should solve this issue. Signed-off-by: Jakub Jelen --- .github/workflows/integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 384b7ea0..53f40d06 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -15,7 +15,7 @@ jobs: matrix: test: [libssh, httpd] name: ${{ matrix.test }} - container: fedora:rawhide + container: fedora:latest env: PKCS11_MODULE: /usr/lib64/ossl-modules/pkcs11.so steps: @@ -51,7 +51,7 @@ jobs: test-bind: name: bind runs-on: ubuntu-22.04 - container: fedora:rawhide + container: fedora:latest steps: - name: Get Date for DNF cache entry id: get-date