Skip to content

Commit 25bc7a7

Browse files
committed
Update action and publish new
1 parent 550305f commit 25bc7a7

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/page.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,29 +8,29 @@ on:
88
jobs:
99
docs:
1010
name: Build documentation
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-24.04
1212

1313
steps:
1414
- name: Check out docs
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616
with:
1717
repository: "PyGreSQL/PyGreSQL"
18-
- name: Set up Python 3.13
19-
uses: actions/setup-python@v5
18+
- name: Set up Python 3.14
19+
uses: actions/setup-python@v6
2020
with:
21-
python-version: 3.13
21+
python-version: 3.14
2222
- name: Install dependencies
2323
run: |
2424
sudo apt install libpq-dev
2525
python -m pip install --upgrade pip
2626
pip install .
27-
pip install "sphinx>=7,<8"
27+
pip install "sphinx>=9,<10"
2828
- name: Create docs with Sphinx
2929
run: |
3030
cd docs
3131
make html
3232
- name: Deploy docs to GitHub pages
33-
uses: peaceiris/actions-gh-pages@v3
33+
uses: peaceiris/actions-gh-pages@v4
3434
with:
3535
github_token: ${{ secrets.GITHUB_TOKEN }}
3636
publish_branch: gh-pages

0 commit comments

Comments
 (0)