From 45b66c73d017ea5c09984072975b18b25a57a5e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?The=CC=81o=20Monnom?= Date: Fri, 14 Jul 2023 13:17:36 +0200 Subject: [PATCH] ci: apt update before installation --- .github/workflows/webrtc-builds.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/webrtc-builds.yml b/.github/workflows/webrtc-builds.yml index 150e5df2..4b73ef4e 100644 --- a/.github/workflows/webrtc-builds.yml +++ b/.github/workflows/webrtc-builds.yml @@ -92,7 +92,9 @@ jobs: - name: Install linux dependencies if: ${{ matrix.target.os == 'ubuntu-latest' }} - run: sudo apt install -y ninja-build pkg-config openjdk-11-jdk + run: | + sudo apt update -y + sudo apt install -y ninja-build pkg-config openjdk-11-jdk - name: Install macos dependencies if: ${{ matrix.target.os == 'macos-latest' }}