Skip to content

Commit 481b846

Browse files
author
abel
committed
(fix) Updated run-tests.yml workflow configuration file to include fixes for macos runners
1 parent 7820edf commit 481b846

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,24 @@ jobs:
99
strategy:
1010
matrix:
1111
python: ["3.9", "3.10", "3.11"]
12-
os: [ubuntu-latest, macos-latest, windows-latest]
12+
os: [ubuntu-latest, macos-13, windows-latest]
1313
runs-on: ${{ matrix.os }}
1414
env:
1515
OS: ${{ matrix.os }}
1616
PYTHON: ${{ matrix.python }}
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020
- name: Install Python
21-
uses: actions/setup-python@v4
21+
uses: actions/setup-python@v5
2222
with:
2323
python-version: ${{ matrix.python }}
2424

2525
- name: Install poetry
2626
run: python -m pip install poetry
2727
- name: Cache the virtualenv
2828
id: cache-venv
29-
uses: actions/cache@v3
29+
uses: actions/cache@v4
3030
with:
3131
path: ./.venv
3232
key: ${{ runner.os }}-${{ matrix.python }}-venv-${{ hashFiles('**/poetry.lock') }}

0 commit comments

Comments
 (0)