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:
2
.github/workflows/publish-website.yml
vendored
2
.github/workflows/publish-website.yml
vendored
@@ -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
|
||||
|
2
.github/workflows/validate-website.yml
vendored
2
.github/workflows/validate-website.yml
vendored
@@ -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
|
||||
|
Reference in New Issue
Block a user