From df69ec12797c97c003a264fddf1c91e014bb7ef0 Mon Sep 17 00:00:00 2001 From: Arne Welzel Date: Fri, 15 Nov 2024 12:33:37 +0100 Subject: [PATCH] generate-docs: Run on Ubuntu 24.04, add cppzmq --- .github/workflows/generate-docs.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/generate-docs.yml b/.github/workflows/generate-docs.yml index 555961dd01..467df0ad29 100644 --- a/.github/workflows/generate-docs.yml +++ b/.github/workflows/generate-docs.yml @@ -17,7 +17,7 @@ jobs: permissions: contents: write # for Git to git push if: github.repository == 'zeek/zeek' - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: # We only perform a push if the action was triggered via a schedule @@ -51,6 +51,7 @@ jobs: bsdmainutils \ ccache \ cmake \ + cppzmq-dev \ flex \ g++ \ gcc \ @@ -71,7 +72,7 @@ jobs: # `python2` so this is a simple workaround until we drop Python 2 # support and explicitly use `python3` for all invocations. sudo ln -sf /usr/bin/python3 /usr/local/bin/python - sudo pip3 install -r doc/requirements.txt + sudo pip3 install --break-system-packages -r doc/requirements.txt - name: ccache uses: hendrikmuhs/ccache-action@v1.2