From 44848b99cd017e39804dc76615babf3f26ae3058 Mon Sep 17 00:00:00 2001 From: Ryan Mast Date: Fri, 9 Feb 2024 01:07:29 -0800 Subject: [PATCH] Bump up macOS image to use for CI jobs to macos-latest --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b2a2479..ba0447f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,14 +3,14 @@ name: CI on: [push, pull_request, workflow_dispatch] env: - MACOSX_DEPLOYMENT_TARGET: 10.15 + MACOSX_DEPLOYMENT_TARGET: 13 jobs: test: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-10.15] + os: [ubuntu-latest, macos-latest] steps: # Install dependencies, then install HELICS from source - name: Install dependencies (Linux)