Pin website workflows to ubuntu-20.04 (#1181)

Summary:
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.

Pull Request resolved: https://github.com/facebook/yoga/pull/1181

Test Plan: Website build works again in GitHub workflows

Reviewed By: cortinico

Differential Revision: D41741067

Pulled By: NickGerleman

fbshipit-source-id: 1171e3d7461568d1c76afab0c5a12899e3d5958e
This commit is contained in:
Nick Gerleman
2022-12-06 01:39:05 -08:00
committed by Facebook GitHub Bot
parent 707115ee7e
commit 5498d3ad61
2 changed files with 2 additions and 2 deletions

View File

@@ -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