File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 7
7
deploy :
8
8
runs-on : ubuntu-latest
9
9
steps :
10
- - uses : actions/checkout@v3
11
- - uses : actions/setup-python@v4
10
+ - uses : actions/checkout@v4
11
+ - uses : actions/setup-python@v5
12
12
with :
13
- python-version : 3.10.8
13
+ python-version : 3.11
14
14
- run : pip install mkdocs-material
15
15
- run : mkdocs gh-deploy --force
Original file line number Diff line number Diff line change @@ -26,24 +26,24 @@ jobs:
26
26
runs-on : ubuntu-latest
27
27
steps :
28
28
- name : Checkout
29
- uses : actions/checkout@v3
29
+ uses : actions/checkout@v4
30
30
- name : Setup Python
31
- uses : actions/setup-python@v4
31
+ uses : actions/setup-python@v5
32
32
with :
33
- python-version : ' 3.10 '
33
+ python-version : ' 3.11 '
34
34
- name : Install MkDocs and Material for MkDocs
35
35
run : pip install mkdocs[i18n] mkdocs-material
36
36
- name : Install Pillow and CairoSVG (required for social card generation)
37
37
run : pip install pillow cairosvg
38
38
- name : Setup caching
39
- uses : actions/cache@v3
39
+ uses : actions/cache@v4
40
40
with :
41
41
key : ${{ github.ref }}
42
42
path : .cache
43
43
- name : Build site (_site directory name is used for Jekyll compatiblity)
44
44
run : mkdocs build --config-file ./mkdocs.yml --site-dir ./_site
45
45
- name : Upload artifact
46
- uses : actions/upload-pages-artifact@v1
46
+ uses : actions/upload-pages-artifact@v3
47
47
48
48
# Deployment job
49
49
deploy :
55
55
steps :
56
56
- name : Deploy to GitHub Pages
57
57
id : deployment
58
- uses : actions/deploy-pages@v1
58
+ uses : actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments