From 3e350185f84796f66ccab2cec779150ebffaa3b4 Mon Sep 17 00:00:00 2001 From: Patrick Brosi Date: Mon, 16 Oct 2023 12:43:10 +0200 Subject: [PATCH] run apt update in workflow before installing packages --- .github/workflows/build.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 620fb00..5b26f87 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,6 +9,8 @@ jobs: uses: actions/checkout@v2 - name: Checkout submodules run: git submodule update --init --recursive + - name: update apt + run: sudo apt update - name: install dependencies run: sudo apt install -y cmake gcc g++ - name: cmake @@ -24,6 +26,8 @@ jobs: uses: actions/checkout@v2 - name: Checkout submodules run: git submodule update --init --recursive + - name: update apt + run: sudo apt update - name: install dependencies run: sudo apt install -y cmake gcc g++ - name: cmake @@ -39,6 +43,8 @@ jobs: uses: actions/checkout@v2 - name: Checkout submodules run: git submodule update --init --recursive + - name: update apt + run: sudo apt update - name: install dependencies run: sudo apt install -y cmake clang - name: cmake @@ -58,6 +64,8 @@ jobs: uses: actions/checkout@v2 - name: Checkout submodules run: git submodule update --init --recursive + - name: update apt + run: sudo apt update - name: install dependencies run: sudo apt install -y cmake clang - name: cmake