From: Niklas Cassel <niklas.cassel@xxxxxxx> GitHub Actions was recently enabled in commit ce1b5612ce99 ("ci: add CI via GitHub Actions"). The commit has a AuthorDate of 2020. The commit mentions that it uses macOS 10.15 rather than 11.0 because 11.0 is only private preview. This was true in 2020, but looking at: https://docs.github.com/en/actions/reference/specifications-for-github-hosted-runners macos-11 is no longer marked as private preview, so let's use it in the virtual environment. Signed-off-by: Niklas Cassel <niklas.cassel@xxxxxxx> --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 04351dd5..8167e3d1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: os: ubuntu-20.04 cc: clang - build: macos - os: macos-10.15 + os: macos-11 env: CI_TARGET_ARCH: ${{ matrix.arch }} -- 2.33.1