Skip to content

Commit 14d9d85

Browse files
committed
Update GitHub Actions
1 parent 5e297a6 commit 14d9d85

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ jobs:
66
docs:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
10-
- uses: actions/setup-python@v3
9+
- uses: actions/checkout@v4
10+
- uses: actions/setup-python@v5
1111
- name: Install dependencies
1212
run: |
1313
pip install sphinx sphinx_rtd_theme
1414
- name: Sphinx build
1515
run: |
1616
sphinx-build -b html docs/source docs/build/html
1717
- name: Deploy
18-
uses: peaceiris/actions-gh-pages@v3
18+
uses: peaceiris/actions-gh-pages@v4
1919
# if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
2020
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/testing' }}
2121
with:

.github/workflows/pythonapp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
runs-on: ubuntu-latest
1919

2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
- name: Set up Python 3.8
23-
uses: actions/setup-python@v1
23+
uses: actions/setup-python@v5
2424
with:
2525
python-version: 3.8
2626
- name: Install dependencies

0 commit comments

Comments
 (0)