From c0670ab9257cdbe27b874492bc72074bcfd0ff46 Mon Sep 17 00:00:00 2001 From: Luke Shingles Date: Tue, 15 Oct 2024 09:12:16 +0100 Subject: [PATCH] CI: use macos-15 --- .github/workflows/linter.yml | 4 ++-- .github/workflows/pytest.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 9c6bec7..e3ee4df 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -13,7 +13,7 @@ on: jobs: pre-commit: - runs-on: macos-14 + runs-on: macos-15 env: RUFF_OUTPUT_FORMAT: github steps: @@ -36,7 +36,7 @@ jobs: pre-commit run --all-files lint: - runs-on: macos-14 + runs-on: macos-15 steps: - name: Checkout Code uses: actions/checkout@v4 diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 7d66c59..49a4099 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -18,7 +18,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-14] + os: [ubuntu-latest, macos-15] python-version: ['3.10', '3.11', '3.12'] env: OS: ${{ matrix.os }}