From c9aa51a2c0b71a84ecc5a10d4b7f02491c29e88f Mon Sep 17 00:00:00 2001 From: nickid2018 Date: Sun, 14 Jul 2024 15:26:34 +0800 Subject: [PATCH] Fix apt source --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3531372..faca819 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -86,7 +86,9 @@ jobs: with: submodules: true - name: Install Deps - run: sudo apt-get update & sudo apt-get install cmake libwireshark-dev make clang + run: | + sudo add-apt-repository ppa:wireshark-dev/stable + sudo apt-get update & sudo apt-get install cmake libwireshark-dev make clang - name: Configure dissector (Debug) if: "!startsWith(github.ref, 'refs/tags/') || contains(github.ref, 'beta')" run: cmake -S . -B build