From 9b63a5d1f1fa23981e6fe2d817fd9c238af72a52 Mon Sep 17 00:00:00 2001 From: Nick Gerleman Date: Mon, 5 Dec 2022 10:53:02 -0800 Subject: [PATCH] Pin website workflows to ubuntu-20.04 The website build started failing with what looks like an incompatibility between nbind and a new libc++ version. GithHub is rolling out a new Ubuntu image, which is the likely culprit. Pin to an older version of Ubuntu since nbind will never be updated, and we haven't replaced it yet. --- .github/workflows/publish-website.yml | 2 +- .github/workflows/validate-website.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-website.yml b/.github/workflows/publish-website.yml index 78b36798..ac936663 100644 --- a/.github/workflows/publish-website.yml +++ b/.github/workflows/publish-website.yml @@ -9,7 +9,7 @@ on: jobs: publish: name: Publish to GitHub Pages - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/validate-website.yml b/.github/workflows/validate-website.yml index f94c7cd2..2972cbe4 100644 --- a/.github/workflows/validate-website.yml +++ b/.github/workflows/validate-website.yml @@ -5,7 +5,7 @@ on: [push, pull_request, workflow_dispatch] jobs: build: name: Build - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3