From ede9954ac921bfcb21e57f1c08f75c9a4ae380a9 Mon Sep 17 00:00:00 2001 From: Dumitru Ceara Date: Tue, 14 Nov 2023 21:40:57 +0100 Subject: [PATCH] ci: Pin Python, Fedora and Ubuntu runner versions. We initially thought always using the latest releases would be more maintainable because we didn't have to bump versions manually. It turns out that it's the opposite, CI suddenly starts to fail on versions where it used to pass. To avoid ever changing tools in our CI due to newer releases of Python/Fedora/Ubuntu. We can always bump versions manually. Fixes: 5ee07b32a01d ("ci: Change all GitHub CI jobs to use ubuntu-latest.") Fixes: 60a53abaa38a ("ci: Add automation for building the containers") Signed-off-by: Dumitru Ceara Acked-by: Ales Musil Acked-by: Mark Michelson (cherry picked from commit 278e0d3f9acb48523923cb56ad6393a5dbec18d8) --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index edf4fb2fd4..43d886ea21 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -106,7 +106,7 @@ jobs: - name: set up python uses: actions/setup-python@v4 with: - python-version: '3.x' + python-version: '3.11' - name: prepare run: ./.ci/linux-prepare.sh @@ -175,7 +175,7 @@ jobs: - name: set up python uses: actions/setup-python@v4 with: - python-version: '3.x' + python-version: '3.11' - name: prepare run: ./.ci/osx-prepare.sh - name: build