From 7a1a3ba2d59fd48db035dd402c79ec449fd77349 Mon Sep 17 00:00:00 2001 From: Grzegorz Latosinski Date: Sat, 2 Mar 2024 22:08:54 +0100 Subject: [PATCH] [#48058] GH Actions: Switched to using ubuntu-20.04 Signed-off-by: Grzegorz Latosinski --- .github/workflows/ci.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 78d79e7..e2b4927 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,22 +7,25 @@ on: branches: [main] jobs: - readme-tests: - runs-on: ubuntu-latest + cancel-previous-job: + runs-on: ubuntu-20.04 steps: - name: Cancel previous uses: styfle/cancel-workflow-action@0.11.0 with: access_token: ${{ github.token }} + readme-tests: + runs-on: ubuntu-20.04 + steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: 'recursive' lfs: true - name: Install tuttest dependencies run: | sudo apt-get update -qqy - sudo apt-get install -qqy --no-install-recommends python3 python3-pip git colorized-logs + sudo apt-get install -qqy --no-install-recommends python3 python3-pip git-lfs colorized-logs sudo pip3 install git+https://github.com/antmicro/tuttest.git - name: Run README.md snippets run: |