Skip to content

Commit 45b66c7

Browse files
committed
ci: apt update before installation
1 parent ba7deb8 commit 45b66c7

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/webrtc-builds.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,9 @@ jobs:
9292

9393
- name: Install linux dependencies
9494
if: ${{ matrix.target.os == 'ubuntu-latest' }}
95-
run: sudo apt install -y ninja-build pkg-config openjdk-11-jdk
95+
run: |
96+
sudo apt update -y
97+
sudo apt install -y ninja-build pkg-config openjdk-11-jdk
9698
9799
- name: Install macos dependencies
98100
if: ${{ matrix.target.os == 'macos-latest' }}

0 commit comments

Comments
 (0)