From ef5f9cbe015f6804270a85a2fc47d54cea280226 Mon Sep 17 00:00:00 2001 From: Martin Lang Date: Thu, 9 May 2024 10:08:56 +0200 Subject: [PATCH 1/2] Use older macOS version with Intel CPU because the OOMMF M1 conda package is still missing https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories --- .github/workflows/workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 80021f1..6654744 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -17,7 +17,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, macos-13, windows-latest] python-version: ["3.8", "3.10"] defaults: run: From 96db288d4339394a82c00b7abf71b9add621619e Mon Sep 17 00:00:00 2001 From: Martin Lang Date: Thu, 9 May 2024 10:14:11 +0200 Subject: [PATCH 2/2] Use new version of conda-incubator action --- .github/workflows/workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 6654744..ba06a37 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -28,7 +28,7 @@ jobs: uses: actions/checkout@v4 - name: Set up conda - uses: conda-incubator/setup-miniconda@v2 + uses: conda-incubator/setup-miniconda@v3 with: python-version: ${{ matrix.python-version }} auto-update-conda: true