From 9baeee524a8bc6b0efb33b50c90fdbc986acfe2f Mon Sep 17 00:00:00 2001 From: Timo Pollmeier Date: Mon, 24 Jun 2024 16:27:04 +0200 Subject: [PATCH] Install git for Codecov uploader --- .github/workflows/ci-c.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci-c.yml b/.github/workflows/ci-c.yml index a8820ebe5..83638a55d 100644 --- a/.github/workflows/ci-c.yml +++ b/.github/workflows/ci-c.yml @@ -39,6 +39,11 @@ jobs: runs-on: ubuntu-latest container: greenbone/gsad-build:stable steps: + - name: Install git for Codecov uploader + run: | + apt update + apt install --no-install-recommends -y ca-certificates git + rm -rf /var/lib/apt/lists/* - uses: actions/checkout@v4 - name: Configure and compile gsad run: |