Skip to content

Commit a49637f

Browse files
committed
Updated github action versions
1 parent eecc578 commit a49637f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/sphinx.yml

Lines changed: 4 additions & 4 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@v6
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@v6
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@v5
3131
with:
3232
path: ~/.cache/pip
3333
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
@@ -134,7 +134,7 @@ jobs:
134134
# Deploy
135135
# https://github.com/peaceiris/actions-gh-pages
136136
- name: Deploy
137-
uses: peaceiris/actions-gh-pages@v3
137+
uses: peaceiris/actions-gh-pages@v4
138138
if: ${{ github.event_name == 'push' }}
139139
#if: ${{ success() && github.event_name == 'push' && github.ref == 'refs/heads/$defaultBranch' }}
140140
with:

0 commit comments

Comments
 (0)