From eeb6a290c26b1534cc29070d087441c95bf6a72b Mon Sep 17 00:00:00 2001 From: Pascal Nasahl Date: Thu, 16 Jan 2025 07:45:49 +0100 Subject: [PATCH] [ci] Fix CI runners Recently, the pytest and lintpy jobs were failing. The reason for this is that we are running these jobs on the latest Ubuntu version. However, we currently recommend using Ubuntu 22.04. Hence, lets pick this runner for the CI jobs. Closes lowRISC/ot-sca#388. Signed-off-by: Pascal Nasahl --- .github/workflows/lintpy.yml | 2 +- .github/workflows/pytest.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lintpy.yml b/.github/workflows/lintpy.yml index 097ba0ad..7a9f1533 100644 --- a/.github/workflows/lintpy.yml +++ b/.github/workflows/lintpy.yml @@ -18,7 +18,7 @@ jobs: # This workflow contains a single job called "lint" lint: # The type of runner that the job will run on - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 # Steps represent a sequence of tasks that will be executed as part of the job steps: diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 988eb7ac..fbb56ccb 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -18,7 +18,7 @@ jobs: # This workflow contains a single job called "pytest" pytest: # The type of runner that the job will run on - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 # Steps represent a sequence of tasks that will be executed as part of the job steps: