From 3c9dd35c52211f45b41667a1bca1dfb6f4ea7e0c Mon Sep 17 00:00:00 2001 From: Nick Porter Date: Mon, 2 Sep 2024 18:33:04 +0100 Subject: [PATCH] Correct installation of libstdc++ --- .github/actions/freeradius-deps/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/freeradius-deps/action.yml b/.github/actions/freeradius-deps/action.yml index 7e724ae1a1..4e4a441464 100644 --- a/.github/actions/freeradius-deps/action.yml +++ b/.github/actions/freeradius-deps/action.yml @@ -94,8 +94,8 @@ runs: - name: Install libstdc++ for fuzzing shell: bash - run: sudo apt-get install libstdc++ - if: ${{ inputs.test_type == 'fuzzing' && runner.os != 'macOS' }} + run: sudo apt-get -y install libstdc++-14-dev + if: ${{ inputs.fuzzing && runner.os != 'macOS' }} - name: Install tacacs_plus shell: bash -- 2.47.2