From 969f4590de461f053e3e3412f35ed649798be056 Mon Sep 17 00:00:00 2001 From: Gerard Braad Date: Fri, 6 Dec 2024 13:47:29 +0000 Subject: [PATCH] Use 24.04 image to use Podman --- .github/workflows/gh-pages.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 0a6021f..d86ed1d 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -11,14 +11,14 @@ jobs: fail-fast: false matrix: os: - - ubuntu-latest + - ubuntu-24.04 steps: - name: Check out repository code uses: actions/checkout@v4 - name: Build docs - run: CONTAINER_RUNTIME=docker CI=true make build_docs + run: CI=true make build_docs - name: Check links in docs - run: CONTAINER_RUNTIME=docker make docs_check_links + run: make docs_check_links - name: Deploy uses: peaceiris/actions-gh-pages@v4 if: github.ref == 'refs/heads/main'