From 722a77857f52757fda377253f86ca5e82c487128 Mon Sep 17 00:00:00 2001 From: Joachim Nilsson Date: Mon, 16 Dec 2019 11:11:42 +0100 Subject: [PATCH] Split apt-get update and install in separate steps Yaml isn't really suited to writing shell scripts :-/ --- .github/workflows/ccpp.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 40f9371..e635948 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -8,10 +8,10 @@ jobs: runs-on: ubuntu-latest steps: + - name: Update packagage cache ... + run: sudo apt-get update - name: Install build dependencies ... - run: - - sudo apt-get update - - sudo apt-get -y install tree tshark + run: sudo apt-get -y install tree tshark - uses: actions/checkout@v1 - name: Generate and run configure script ... run: ./autogen.sh && ./configure