From ba0f065c59fc329ed9fbff23ef85b1ea1f10dac6 Mon Sep 17 00:00:00 2001 From: AleksejMelman <52255577+AleksejMelman@users.noreply.github.com> Date: Tue, 23 Feb 2021 14:31:58 +0100 Subject: [PATCH] Update ccpp-linux.yml Soon github actions will use ubuntu 20.04 as latest. Let's avoid surprised and stick to ubuntu-18.04 fow now. --- .github/workflows/ccpp-linux.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ccpp-linux.yml b/.github/workflows/ccpp-linux.yml index 39f5f275..8e502a5f 100644 --- a/.github/workflows/ccpp-linux.yml +++ b/.github/workflows/ccpp-linux.yml @@ -5,13 +5,12 @@ on: [push] jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-18.04 steps: - name: Check out repository uses: actions/checkout@v2 - with: - depth: 1 + with: submodules: 'recursive' - name: Run Cppcheck uses: Bedzior/run-cppcheck@master