Skip to content

Commit 1b69fde

Browse files
authored
Merge pull request #348 from bgilbert/workflows
workflows: update actions/checkout and actions/cache to current
2 parents 4f22ea1 + 2f3180f commit 1b69fde

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/python.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
docs-base: ${{ steps.paths.outputs.docs }}
2323
steps:
2424
- name: Check out repo
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626
- name: Set up Python
2727
uses: actions/setup-python@v6
2828
with:
2929
python-version: '3.14'
3030
- name: Install dependencies
3131
run: python -m pip install pre-commit
3232
- name: Cache pre-commit environments
33-
uses: actions/cache@v4
33+
uses: actions/cache@v5
3434
with:
3535
path: ~/.cache/pre-commit
3636
key: pre-commit|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
@@ -59,7 +59,7 @@ jobs:
5959
sdist: sdist
6060
steps:
6161
- name: Check out repo
62-
uses: actions/checkout@v5
62+
uses: actions/checkout@v6
6363
- name: Set up Python ${{ matrix.python-version }}
6464
if: matrix.upstream-python == null
6565
uses: actions/setup-python@v6
@@ -169,7 +169,7 @@ jobs:
169169
openslide: [zip, wheel]
170170
steps:
171171
- name: Check out repo
172-
uses: actions/checkout@v5
172+
uses: actions/checkout@v6
173173
- name: Set up Python ${{ matrix.python-version }}
174174
uses: actions/setup-python@v6
175175
with:
@@ -241,7 +241,7 @@ jobs:
241241
git libopenslide0 python3-jinja2 python3-pil python3-pip
242242
pip install pytest
243243
- name: Check out repo
244-
uses: actions/checkout@v5
244+
uses: actions/checkout@v6
245245
- name: Install OpenSlide Python
246246
run: python3 setup.py install
247247
- name: Run tests
@@ -255,7 +255,7 @@ jobs:
255255
runs-on: ubuntu-slim
256256
steps:
257257
- name: Check out repo
258-
uses: actions/checkout@v5
258+
uses: actions/checkout@v6
259259
- name: Set up Python
260260
uses: actions/setup-python@v6
261261
with:

0 commit comments

Comments
 (0)