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.
This commit is contained in:
Nick Gerleman
2022-12-05 10:53:02 -08:00
parent 707115ee7e
commit 9b63a5d1f1
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ on:
jobs: jobs:
publish: publish:
name: Publish to GitHub Pages name: Publish to GitHub Pages
runs-on: ubuntu-latest runs-on: ubuntu-20.04
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3

View File

@@ -5,7 +5,7 @@ on: [push, pull_request, workflow_dispatch]
jobs: jobs:
build: build:
name: Build name: Build
runs-on: ubuntu-latest runs-on: ubuntu-20.04
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3