Skip to content

Commit 8d22e8d

Browse files
committed
Changing runner macos intel runner to macos-15-intel.
The macos-13 runners are being deprecated as announced here: actions/runner-images#13046 The replacement is macos-15-intel as announced here: actions/runner-images#13045
1 parent 0efa493 commit 8d22e8d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ jobs:
4343
needs: lint
4444
strategy:
4545
matrix:
46-
# using macos-13, last available intel architecture. macos-latest is arm64 architecture.
47-
os: [ubuntu-latest, windows-latest, macos-latest, macos-13]
46+
# using macos-15-intel, last available intel architecture. macos-latest is arm64 architecture.
47+
os: [ubuntu-latest, windows-latest, macos-latest, macos-15-intel]
4848
inputs: ["00_ or 01_ or 02_ or 03_ or 04_ or 05_", "06_ or 07_ or 08_ or 09_ or 10_"]
4949
runs-on: ${{ matrix.os }}
5050
steps:
@@ -85,7 +85,7 @@ jobs:
8585
env:
8686
SIMPLE_ITK_MEMORY_CONSTRAINED_ENVIRONMENT: 1
8787
run: | # pyenchant has a problem locating libenchant on macOS-ARM64. setting this environment variable resolves the issue
88-
if [ "$RUNNER_OS" == "macOS" ] && [ "${{ matrix.os }}" != "macos-13" ]; then
88+
if [ "$RUNNER_OS" == "macOS" ] && [ "${{ matrix.os }}" != "macos-15-intel" ]; then
8989
export PYENCHANT_LIBRARY_PATH=/opt/homebrew/lib/libenchant-2.dylib
9090
fi
9191
pytest -v --tb=short -k "${{matrix.inputs}}" tests/test_notebooks.py::Test_notebooks::test_python_notebook

0 commit comments

Comments
 (0)