From 8d8f52153e538e5ca32998662253f657c65525c3 Mon Sep 17 00:00:00 2001 From: Matt Schwager Date: Wed, 24 Apr 2024 09:49:03 -0400 Subject: [PATCH] Fix macOS CI --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e449163..5c7da0f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: matrix: os: - ubuntu-latest - - macos-latest + - macos-13 # https://github.com/actions/setup-python/issues/850 python-version: - "3.8" - "3.9" @@ -15,11 +15,11 @@ jobs: - "3.12" runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install Poetry run: pipx install poetry - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: "poetry"