From 3e832411488c3e4ddaa992122d608ca7408cdb1d Mon Sep 17 00:00:00 2001 From: Richard Palethorpe Date: Wed, 3 Jan 2024 16:01:02 +0000 Subject: [PATCH] Use Ubuntu LTS 22.04 to avoid build errors --- .github/workflows/pages.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index b906bfd..bfb50b7 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -14,7 +14,7 @@ env: SITE_PREFIX: state-of-open-source-ai jobs: check: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 with: {fetch-depth: 0} @@ -43,7 +43,7 @@ jobs: # https://jupyterbook.org/en/stable/reference/cli.html run: jupyter-book build --builder linkcheck --warningiserror --nitpick --keep-going . build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 with: {fetch-depth: 0} @@ -96,7 +96,7 @@ jobs: environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 needs: [check, build] steps: - id: deployment