1010 name : Build distribution
1111 runs-on : ubuntu-latest
1212 steps :
13- - uses : actions/checkout@v3
13+ - uses : actions/checkout@v5
1414 - name : Set up python 3.9
15- uses : actions/setup-python@v4
15+ uses : actions/setup-python@v5
1616 with :
1717 python-version : 3.9
1818 - name : Install build dependencies
@@ -22,19 +22,19 @@ jobs:
2222 run : |
2323 python setup.py sdist bdist_wheel
2424 - name : Upload build results
25- uses : actions/upload-artifact@v1
25+ uses : actions/upload-artifact@v4
2626 with :
2727 name : dist
2828 path : dist
2929 build-docs :
3030 name : Build documentation
3131 runs-on : ubuntu-latest
3232 steps :
33- - uses : actions/checkout@v3
33+ - uses : actions/checkout@v4
3434 - uses : ammaraskar/sphinx-action@master
3535 with :
3636 docs-folder : " docs/"
37- - uses : actions/upload-artifact@v1
37+ - uses : actions/upload-artifact@v4
3838 with :
3939 name : docs
4040 path : docs/_build/html/
4646 python : ["3.9"]
4747 runs-on : ubuntu-latest
4848 steps :
49- - uses : actions/checkout@v3
49+ - uses : actions/checkout@v4
5050 - name : Set up Python ${{ matrix.python }}
51- uses : actions/setup-python@v4
51+ uses : actions/setup-python@v5
5252 with :
5353 python-version : ${{ matrix.python }}
5454 - name : Download arduino-cli
@@ -70,17 +70,17 @@ jobs:
7070 - build-docs
7171 runs-on : ubuntu-latest
7272 steps :
73- - uses : actions/checkout@v3
73+ - uses : actions/checkout@v4
7474 - name : Download built documentation
75- uses : actions/download-artifact@v1
75+ uses : actions/download-artifact@v4
7676 with :
7777 name : docs
7878 path : docs/_build/html/
7979 - name : Disables jekyll
8080 run : |
8181 touch docs/_build/html/.nojekyll
8282 - name : Publish on GitHub Pages
83- uses : JamesIves/github-pages-deploy-action@4.0.0
83+ uses : JamesIves/github-pages-deploy-action@4
8484 with :
8585 branch : gh-pages
8686 folder : docs/_build/html
9292 runs-on : ubuntu-latest
9393 steps :
9494 - name : Download build results
95- uses : actions/download-artifact@v1
95+ uses : actions/download-artifact@v4
9696 with :
9797 name : dist
9898 path : dist
@@ -109,7 +109,7 @@ jobs:
109109 runs-on : ubuntu-latest
110110 steps :
111111 - name : Download build results
112- uses : actions/download-artifact@v1
112+ uses : actions/download-artifact@v4
113113 with :
114114 name : dist
115115 path : dist
0 commit comments