From 98caf839f731caceea1fdd73647b2d7fdf344870 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 the Debian container Signed-off-by: Grzegorz Latosinski --- .github/workflows/ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 78d79e7..9c74083 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,15 +7,20 @@ on: branches: [main] jobs: - readme-tests: + cancel-previous-job: runs-on: ubuntu-latest steps: - name: Cancel previous uses: styfle/cancel-workflow-action@0.11.0 with: access_token: ${{ github.token }} + readme-tests: + runs-on: ubuntu-latest + container: + image: debian:bullseye + steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: 'recursive' lfs: true