From bafbf0c7aa17214620f36bce568fbfbe25770174 Mon Sep 17 00:00:00 2001 From: Kristofer Hallin Date: Mon, 29 Apr 2024 11:28:07 +0200 Subject: [PATCH] GitHub Actions: Run apt update before downloading packages. --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index af8c90b5..c3ab3597 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,8 @@ jobs: # 1) checkout and compile natively (no test) - name: install cligen run: (git clone https://github.com/clicon/cligen.git && cd cligen && ./configure && make && sudo make install) + - name: run apt update + run: sudo apt update - name: install dependencies run: sudo apt install -y libssl-dev libnghttp2-dev - name: configure