Skip to content

Commit 0672f11

Browse files
committed
Updated GitHub actions
1 parent 31f620c commit 0672f11

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/sphinx.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
# https://github.com/marketplace/actions/checkout
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
2020
lfs: true
2121
# https://github.com/marketplace/actions/setup-python
2222
# ^-- This gives info on matrix testing.
2323
- name: Install Python
24-
uses: actions/setup-python@v2
24+
uses: actions/setup-python@v4
2525
with:
2626
python-version: 3.8
2727
# https://docs.github.com/en/actions/guides/building-and-testing-python#caching-dependencies
2828
# ^-- How to set up caching for pip on Ubuntu
2929
- name: Cache pip
30-
uses: actions/cache@v2
30+
uses: actions/cache@v4
3131
with:
3232
path: ~/.cache/pip
3333
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}

0 commit comments

Comments
 (0)