Skip to content

Commit b492087

Browse files
authored
Update GitHub Actions to use latest versions
1 parent 9421364 commit b492087

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ jobs:
77
runs-on: macos-latest
88
strategy:
99
matrix:
10-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
10+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v6
1313
- name: Set up Python ${{ matrix.python-version }}
14-
uses: actions/setup-python@v5
14+
uses: actions/setup-python@v6
1515
with:
1616
python-version: ${{ matrix.python-version }}
1717
cache: 'pip'
1818
cache-dependency-path: setup.py
1919
- name: Cache Playwright browsers
20-
uses: actions/cache@v4
20+
uses: actions/cache@v5
2121
with:
2222
path: ~/.cache/ms-playwright/
2323
key: ${{ runner.os }}-browsers
@@ -40,7 +40,7 @@ jobs:
4040
run: |
4141
tests/run_examples.sh
4242
- name: Archive examples
43-
uses: actions/upload-artifact@v4
43+
uses: actions/upload-artifact@v6
4444
with:
4545
name: examples-${{ matrix.python-version }}
4646
path: examples/*

0 commit comments

Comments
 (0)