Skip to content

Commit bd366c7

Browse files
authored
Merge pull request #26 from SamJUK/fix/build
Fix CI Builds
2 parents d4f6d54 + 7a10b4b commit bd366c7

File tree

5 files changed

+14
-23
lines changed

5 files changed

+14
-23
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323
- name: Run Sphinx documentation build
24-
uses: ammaraskar/sphinx-action@0.4
24+
uses: ammaraskar/sphinx-action@8.1.3
2525
with:
2626
docs-folder: "./"
2727
- name: Upload documentation artifact
28-
uses: actions/upload-pages-artifact@v1
28+
uses: actions/upload-pages-artifact@v3
2929
with:
3030
path: _build/html/
3131
deploy:
@@ -38,4 +38,4 @@ jobs:
3838
steps:
3939
- name: Deploy to GitHub Pages
4040
id: deployment
41-
uses: actions/deploy-pages@v1
41+
uses: actions/deploy-pages@v4

.github/workflows/pr.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout repository
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212
- name: Run Sphinx documentation build
13-
uses: ammaraskar/sphinx-action@0.4
13+
uses: ammaraskar/sphinx-action@8.1.3
1414
with:
1515
docs-folder: "./"
1616
- name: Upload documentation artifact
17-
uses: actions/upload-artifact@v3
17+
uses: actions/upload-artifact@v4
1818
with:
1919
name: documentation
20-
path: _build/html/
20+
path: _build/html/

conf.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,8 @@
3737
exclude_patterns = ['_build']
3838

3939
html_theme = "sphinx_rtd_theme"
40-
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
4140
html_show_sourcelink = False
4241

43-
html_static_path = ['_static']
4442
templates_path = ['_templates']
4543
html_extra_path = ['_redirects']
4644

index.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
Welcome to Warden's documentation!
22
==================================
33

4-
```{include} ../README.md
5-
---
6-
start-line: 1
7-
end-before: <!-- include_open_stop -->
8-
---
9-
```
10-
114
Under the hood `docker-compose` is used to control everything which Warden runs (shared services as well as per-project containers) via the Docker Engine.
125

136
## Features

requirements.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
sphinx>=5.0.0,<6.0.0
1+
Sphinx==8.1.3
22
sphinx-autobuild==2024.10.3
3-
sphinx_rtd_theme>=1.0.0,<2.0
4-
myst-parser>=0.18.0,<1.0
5-
sphinx-copybutton>=0.2.11,<1.0
6-
sphinx-markdown-tables>=0.0.15,<1.0
7-
jinja2>=3.0
3+
sphinx-copybutton==0.5.2
4+
sphinx-markdown-tables==0.0.17
5+
sphinx-rtd-theme==3.0.2
6+
myst-parser==4.0.0
7+
Jinja2==3.1.4

0 commit comments

Comments
 (0)