From d955e6d4c99aa03a3ece61010e8151f5058f0ffa Mon Sep 17 00:00:00 2001 From: Michael Adams Date: Mon, 27 Nov 2023 20:33:35 -0800 Subject: [PATCH] Changed the versions of macOS being tested in the GitHub Actions CI workflow (i.e., added macos-13 and deleted macos-11). --- .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 c80072de..e56dd739 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: build: strategy: matrix: - os: [ubuntu-22.04, ubuntu-20.04, macos-12, macos-11] + os: [ubuntu-22.04, ubuntu-20.04, macos-13, macos-12] compiler: [ {cc: gcc, cxx: g++}, {cc: clang, cxx: clang++} ] include: - os: [windows-2022]